mirror of
https://github.com/status-im/realm-js.git
synced 2025-02-22 11:18:15 +00:00
18 lines
326 B
C
18 lines
326 B
C
|
//
|
||
|
// RealmJS.h
|
||
|
// RealmJS
|
||
|
//
|
||
|
// Created by Ari Lazier on 4/23/15.
|
||
|
// Copyright (c) 2015 Realm. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <JavaScriptCore/JavaScriptCore.h>
|
||
|
|
||
|
@interface RealmJS : NSObject
|
||
|
|
||
|
// add realm apis to the given js context
|
||
|
+ (void)initializeContext:(JSContextRef)ctx;
|
||
|
|
||
|
@end
|