UNPKG

@react-native-ohos/realm

Version:

Realm by MongoDB is an offline-first mobile database: an alternative to SQLite and key-value stores

8 lines (7 loc) 275 B
import { binding } from "../binding"; import type { TypeOptions } from "./types"; /** @internal */ export declare function createDateTypeHelpers({ optional }: TypeOptions): { toBinding: (value: unknown) => binding.Timestamp; fromBinding: (value: unknown) => Date; };