mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-01 01:32:04 +03:00
16 lines
228 B
Swift
16 lines
228 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Foundation
|
|
import RxSwift
|
|
|
|
protocol Component {
|
|
var sink: Observable<Any> { get }
|
|
}
|
|
|
|
protocol ViewComponent: Component {
|
|
var view: NSView { get }
|
|
}
|