mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
13 lines
339 B
Objective-C
13 lines
339 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <JavaScriptCore/JavaScriptCore.h>
|
|
#import "JSCocoa.h"
|
|
|
|
@interface FileSystemHelper : NSObject {
|
|
JSContextRef _ctx;
|
|
}
|
|
|
|
- (id)initWithJSContextRef:(JSContextRef)ctx;
|
|
- (void)contentsOfDirectoryAtPath:(NSString *)path recursive:(BOOL)recursive onComplete:(JSValueRefAndContextRef)jsFunction;
|
|
|
|
@end
|