UNPKG

jinaga

Version:

Data management for web and mobile applications.

12 lines (9 loc) 241 B
import { FactRecord, FactReference } from "../storage"; export interface DeclaredFact { reference: FactReference; fact: FactRecord | null; } export type Declaration = { name: string; declared: DeclaredFact; }[];