9 lines
No EOL
264 B
TypeScript
9 lines
No EOL
264 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
|