import { Logger } from '../../logger'; import { IDatabase, IDatabaseTransaction } from '../../storage'; import { Database, Migration, MigrationContext } from '../migration'; export declare class Migration000 extends Migration { path: string; database: Database; prepare(context: MigrationContext): IDatabase; forward(context: MigrationContext, db: IDatabase, tx: IDatabaseTransaction | undefined, logger: Logger): Promise; /** * Writing a backwards migration is optional but suggested */ backward(context: MigrationContext, db: IDatabase, tx: IDatabaseTransaction | undefined, logger: Logger): Promise; } //# sourceMappingURL=000-template.d.ts.map