UNPKG

@altostra/core

Version:

Core library for shared types and logic

8 lines (7 loc) 220 B
import type { Blueprint } from "../Blueprint"; export declare function integrityCheck(bp: Blueprint): IntegrityProblem[]; export interface IntegrityProblem { path: string[]; reason: string; item?: unknown; }