UNPKG

@azure/msal-browser

Version:
17 lines (14 loc) 357 B
/* * 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; };