realm
Version:
Realm by MongoDB is an offline-first mobile database: an alternative to SQLite and key-value stores
10 lines (9 loc) • 295 B
TypeScript
import type { binding } from "./binding";
type SyncProxyConfigType = {
create(): binding.SyncProxyConfig | undefined;
};
/** @internal */
export declare const syncProxyConfig: SyncProxyConfigType;
/** @internal */
export declare function inject(value: SyncProxyConfigType): void;
export {};