/** * Tae Won Ha - http://taewon.de - @hataewon * See LICENSE */ @import Foundation; @class NeoVimWindow; NS_ASSUME_NONNULL_BEGIN @interface NeoVimTab : NSObject @property (nonatomic, readonly) NSInteger handle; @property (nonatomic, readonly) NSArray *windows; - (instancetype)initWithHandle:(NSInteger)handle windows:(NSArray *)windows; - (NSString *)description; @end NS_ASSUME_NONNULL_END