mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-11 03:44:39 +00:00
9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
/**
|
|
* Protocol modes supported by MSAL.
|
|
*/
|
|
export declare const ProtocolMode: {
|
|
readonly AAD: "AAD";
|
|
readonly OIDC: "OIDC";
|
|
};
|
|
export type ProtocolMode = (typeof ProtocolMode)[keyof typeof ProtocolMode];
|
|
//# sourceMappingURL=ProtocolMode.d.ts.map
|