import type { Hash } from "./types.js"; /** * Variable: mutable binding to an immutable CAS node * Identified by composite key (name, schema) */ export type Variable = { name: string; schema: Hash; value: Hash; created: number; updated: number; tags: Record; labels: string[]; }; //# sourceMappingURL=variable.d.ts.map