import { type Sql } from "sql-template-tag"; import type { BucketName } from "../shared/schemas.js"; /** * マイグレーションに必要なパラメーターです。 */ type Params = Readonly<{ /** * バケット名です。 */ bucketName: BucketName; }>; declare const migrations: ((params: Params) => Sql)[]; export default migrations; //# sourceMappingURL=_migrations.d.ts.map