@azure/msal-browser
Version:
Microsoft Authentication Library for js
13 lines • 423 B
TypeScript
import { IGuidGenerator } from "@azure/msal-common";
import { BrowserCrypto } from "./BrowserCrypto";
export declare class GuidGenerator implements IGuidGenerator {
private cryptoObj;
constructor(cryptoObj: BrowserCrypto);
generateGuid(): string;
/**
* verifies if a string is GUID
* @param guid
*/
isGuid(guid: string): boolean;
}
//# sourceMappingURL=GuidGenerator.d.ts.map