UNPKG

@azure/msal-common

Version:
15 lines 410 B
/** * Type which defines library state */ export type LibraryStateObject = { id: string; meta?: Record<string, string>; }; /** * Type which defines the stringified and encoded state object sent to the service in the authorize request. */ export type RequestStateObject = { userRequestState: string; libraryState: LibraryStateObject; }; //# sourceMappingURL=StateTypes.d.ts.map