mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-04-09 11:55:50 +00:00
12 lines
310 B
Objective-C
12 lines
310 B
Objective-C
#import <Foundation/NSNotification.h>
|
||
#import <PromiseKit/fwd.h>
|
||
|
||
|
||
@interface NSNotificationCenter (PromiseKit)
|
||
/**
|
||
Fires once for the named notification.
|
||
|
||
thens the NSNotification object and the NSNotification’s userInfo as the second argument.
|
||
*/
|
||
+ (PMKPromise *)once:(NSString *)notificationName;
|
||
@end
|