contract-query/frontend/node_modules/@azure/msal-browser/src/custom_auth/UserAccountAttributes.ts
2025-08-14 15:03:33 -05:00

16 lines
379 B
TypeScript

/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export type UserAccountAttributes = Record<string, string> & {
city?: string;
country?: string;
displayName?: string;
givenName?: string;
jobTitle?: string;
postalCode?: string;
state?: string;
streetAddress?: string;
surname?: string;
};