Files
sistema_combustible/backend/node_modules/@azure/msal-browser/src/request/EndSessionRequest.ts
2026-06-02 16:57:08 +00:00

17 lines
357 B
TypeScript

/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { CommonEndSessionRequest } from "@azure/msal-common/browser";
/**
* EndSessionRequest
*/
export type EndSessionRequest = Partial<CommonEndSessionRequest> & {
/**
* Authority to send logout request.
*/
authority?: string;
};