mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-13 22:29:45 +08:00
15 lines
273 B
Objective-C
15 lines
273 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "RCTExport.h"
|
|
|
|
@class RCTBridge;
|
|
|
|
@interface RCTTiming : NSObject <RCTNativeModule>
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge;
|
|
- (void)enqueueUpdateTimers;
|
|
|
|
@end
|