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
17 lines
495 B
Plaintext
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 |