@adonisjs/lucid
Version:
SQL ORM built on top of Active Record pattern
12 lines (11 loc) • 317 B
TypeScript
import type Ace from '@ioc:Adonis/Core/Ace';
/**
* Migrator class to be used for testing.
*/
export declare class TestsTruncator {
private ace;
private connectionName?;
constructor(ace: typeof Ace, connectionName?: string | undefined);
private runCommand;
run(): Promise<() => Promise<void>>;
}