Files
klz-cables.com/.pnpm-store/v10/files/8a/8f2a26b58bf1efdde12d883046a0d3ba90481ca83251ca5113de5e48fd9800f6bcf83774fda7b4b6287b20562e044f9824417895c57113bd7cac48f4463931
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

17 lines
493 B
Plaintext

import { RestCommand } from "../../types.js";
//#region src/rest/commands/auth/providers.d.ts
interface ReadProviderOutput {
name: string;
driver: string;
icon?: string | null;
}
/**
* List all the configured auth providers.
*
* @returns Array of configured auth providers.
*/
declare const readProviders: <Schema>(sessionOnly?: boolean) => RestCommand<ReadProviderOutput[], Schema>;
//#endregion
export { ReadProviderOutput, readProviders };
//# sourceMappingURL=providers.d.ts.map