@azure/msal-common
Version:
Microsoft Authentication Library for js
15 lines • 410 B
TypeScript
/**
* 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