1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-01 01:32:04 +03:00
vimr/VimR/Component.swift
2016-07-24 19:55:25 +02:00

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 }
}