Files
klz-cables.com/.pnpm-store/v10/files/91/2000766974b64aa8a52ecea1048cb91c754be075d34d6e73ea6c8fe03829d160d41c02af1aeb0636a10ae1c41124b406386ba6a37988bcdabc98e9d82bf723
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

14 lines
448 B
Plaintext

import type { BasePostgresAdapter } from './types.js';
type Args = {
/**
* Name of a database, defaults to the current one
*/
name?: string;
/**
* Schema to create in addition to 'public'. Defaults to adapter.schemaName if exists.
*/
schemaName?: string;
};
export declare const createDatabase: (this: BasePostgresAdapter, args?: Args) => Promise<boolean>;
export {};
//# sourceMappingURL=createDatabase.d.ts.map