Files
klz-cables.com/.pnpm-store/v10/files/77/acd708c3e8b1b5043ae71b1a9deec0b85b661c32626a223199f11237dadee3b0c2e901538918977a038ab29aee20be934159b7bf3d6befb0b2024556c3f528
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

16 lines
433 B
Plaintext

import { RestCommand } from "../../types.js";
//#region src/rest/commands/delete/deployment.d.ts
/**
* Delete a deployment provider.
*
* @param provider The provider type (e.g. 'vercel')
*
* @returns Nothing
* @throws Will throw if provider is empty
*/
declare const deleteDeployment: <Schema>(provider: string) => RestCommand<void, Schema>;
//#endregion
export { deleteDeployment };
//# sourceMappingURL=deployment.d.ts.map