@bsv/overlay
Version:
BSV Blockchain Overlay Services Engine
11 lines • 298 B
TypeScript
import { Knex } from 'knex';
/**
* An array of all migrations, in order.
*/
interface Migration {
up: (knex: Knex) => Promise<void>;
down: (knex: Knex) => Promise<void>;
}
declare const allMigrations: Migration[];
export default allMigrations;
//# sourceMappingURL=all-migrations.d.ts.map