claude-flow
Version:
Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)
15 lines • 511 B
TypeScript
import { IGuidGenerator } from "@azure/msal-common/node";
export declare class GuidGenerator implements IGuidGenerator {
/**
*
* RFC4122: The version 4 UUID is meant for generating UUIDs from truly-random or pseudo-random numbers.
* uuidv4 generates guids from cryprtographically-string random
*/
constructor(): string;
/**
* verifies if a string is GUID
* @param guid
*/
constructor(guid: string): boolean;
}
//# sourceMappingURL=GuidGenerator.d.ts.map