Files
klz-cables.com/.pnpm-store/v10/files/00/dd78228fd5a0565270b4163e1371df5a6fa15c5f6e76b4b61ad9a0cd7316547a6f28aa873198553332b9f477104516267c5aa42a62e9496dbfd3666551e840
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

15 lines
559 B
Plaintext

import type { ParsedArgs } from 'minimist';
import type { SanitizedConfig } from '../config/types.js';
export declare const availableCommands: string[];
type Args = {
config: SanitizedConfig;
/**
* Override the migration directory. Useful for testing when the CWD differs
* from where the test config expects migrations to be stored.
*/
migrationDir?: string;
parsedArgs: ParsedArgs;
};
export declare const migrate: ({ config, migrationDir, parsedArgs }: Args) => Promise<void>;
export {};
//# sourceMappingURL=migrate.d.ts.map