TenantAtlas/apps/platform/.pnpm-store/v10/files/a6/6fd8b60a524c6ef33b8bc18482de32037a6ec9386c862f8b6ec6b82709f0c8a2856c8cdb3b4cdb515ec3744d233372e2ed164cab7dc8a21f8b04240b100527
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

17 lines
398 B
Plaintext

export interface KitConfig {
out: string;
schema: string;
}
export interface MigrationConfig {
migrationsFolder: string;
migrationsTable?: string;
migrationsSchema?: string;
}
export interface MigrationMeta {
sql: string[];
folderMillis: number;
hash: string;
bps: boolean;
}
export declare function readMigrationFiles(config: MigrationConfig): MigrationMeta[];