UNPKG

@bsv/overlay

Version:
11 lines 298 B
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