UNPKG

jinaga

Version:

Data management for web and mobile applications.

10 lines 269 B
import { FactRecord, FactReference } from "../storage"; export interface DeclaredFact { reference: FactReference; fact: FactRecord | null; } export type Declaration = { name: string; declared: DeclaredFact; }[]; //# sourceMappingURL=declaration.d.ts.map