10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
|
/**
|
||
|
* Type representing a unique request thumbprint.
|
||
|
*/
|
||
|
export declare type RequestThumbprint = {
|
||
|
clientId: string;
|
||
|
authority: string;
|
||
|
scopes: Array<string>;
|
||
|
homeAccountIdentifier?: string;
|
||
|
};
|
||
|
//# sourceMappingURL=RequestThumbprint.d.ts.map
|