UNPKG

@dialog-db/query

Version:

Datalog query engine inspired by Datomic

10 lines 398 B
/** * @type {(source: unknown) => source is API.Entity} */ export const is: (source: unknown) => source is API.Entity; export const equal: (self: API.Link, other: API.Link) => boolean; export const toJSON: (self: API.Link) => Link.JSON; export const fromJSON: (json: Link.JSON) => API.Link; import * as API from '../api.js'; import * as Link from './link.js'; //# sourceMappingURL=entity.d.ts.map