UNPKG

nosql-constraints

Version:

Helpers to manage constrants (i.e. cascade delete) in a NoSQL database

7 lines 172 B
export type VertexId = string; export type VertexDefinition<Body> = { id: VertexId; adjacentTo: VertexId[]; body?: Body; }; //# sourceMappingURL=vertex.d.ts.map