n4auth/node_modules/@azure/msal-common/dist/account/ClientInfo.d.ts

15 lines
441 B
TypeScript
Raw Normal View History

2021-07-15 20:10:20 +00:00
import { ICrypto } from "../crypto/ICrypto";
/**
* Client info object which consists of two IDs. Need to add more info here.
*/
export declare type ClientInfo = {
uid: string;
utid: string;
};
/**
* Function to build a client info object
* @param rawClientInfo
* @param crypto
*/
export declare function buildClientInfo(rawClientInfo: string, crypto: ICrypto): ClientInfo;
//# sourceMappingURL=ClientInfo.d.ts.map