UNPKG

@developer.notchatbot/webchat

Version:

A beautiful React chatbot widget with single-file bundle

10 lines (9 loc) 287 B
/** * Generate a UUIDv7 (time-ordered UUID) * UUIDv7 is designed to be time-ordered and includes a timestamp component */ export declare function generateUUIDv7(): string; /** * Validate if a string is a valid UUIDv7 */ export declare function isValidUUIDv7(uuid: string): boolean;