/** * Status of a migration step in a run result. */ export type TMigrationStatus = 'applied' | 'skipped' | 'failed'; /** * Backend used to persist the migration ledger. */ export type TLedgerBackend = 'mongo' | 's3';