@forge/sql
4.0.0-next.14.0.0
out/migration.d.ts~
out/migration.d.tsModified+2−2
Index: package/out/migration.d.ts
===================================================================
--- package/out/migration.d.ts
+++ package/out/migration.d.ts
@@ -1,10 +1,10 @@
import { SqlClient } from './sql';
-declare type MigrationRecord = {
+type MigrationRecord = {
name: string;
statement: string;
};
-declare type MigrationVersion = {
+type MigrationVersion = {
id: number;
name: string;
migratedAt: Date;
};