luxlabs header browser preview


@class NSObject;
@protocol OS_dispatch_source;

@interface NFTimer : NSObject {
    NSObject<OS_dispatch_source> *_src;
    unsigned long long _popTimeInSeconds;
    BOOL _monotonic;
}

- (void)dealloc;
- (void)startTimer:(double)a0;
- (void)startTimer:(double)a0 leeway:(double)a1;
- (id)initSleepTimerWithCallback:(id /* block */)a0 queue:(id)a1;
- (id)description;
- (void).cxx_destruct;
- (void)stopTimer;
- (id)initWithCallback:(id /* block */)a0 queue:(id)a1;

@end