SqliteMigrator
Constructor
Signature
declare function layer<R>(options: MigratorOptions<R>): Layer<never, any, any>;Signature
declare const run: <R2 = never>({
loader,
schemaDirectory,
table,
}: Migrator.MigratorOptions<R2>) => Effect.Effect<
ReadonlyArray<readonly [id: number, name: string]>,
Migrator.MigrationError | SqlError,
Client.SqlClient | R2
>;