14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
/*
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
|
|
import { ServerResponseType } from "../utils/Constants.js";
|
|
|
|
/**
|
|
* Options for the OIDC protocol mode.
|
|
*/
|
|
export type OIDCOptions = {
|
|
serverResponseType?: ServerResponseType;
|
|
defaultScopes?: Array<string>;
|
|
};
|