Files
klz-cables.com/.pnpm-store/v10/files/8b/7b95e6a50bd420e7f6ca86a9d0dff8422d87177f5abec1e893740dc0a024c6f82acbefae5576a55823546e5bd7285f5c3785af51eb4c51a8c7ff9cc02bc921
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
495 B
Plaintext

import { RestCommand } from "../../types.cjs";
//#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.cts.map