//#region src/graph.d.ts /** * An entry in the migration graph. All on-disk migrations are attested, * so `migrationHash` is always a string. */ interface MigrationEdge { readonly from: string; readonly to: string; readonly migrationHash: string; readonly dirName: string; readonly createdAt: string; /** * Sorted, deduplicated list of `invariantId`s this edge provides. * An empty array means the migration declares no routing-visible * data transforms. */ readonly invariants: readonly string[]; } interface MigrationGraph { readonly nodes: ReadonlySet; readonly forwardChain: ReadonlyMap; readonly reverseChain: ReadonlyMap; readonly migrationByHash: ReadonlyMap; } //#endregion export { MigrationGraph as n, MigrationEdge as t }; //# sourceMappingURL=graph-bDjJ4GL9.d.mts.map