UNPKG

@aurigma/design-atoms-model

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

11 lines (10 loc) 272 B
export declare class Uuid { private _value; constructor(value?: string); set value(value: string); get value(): string; isValid(value: string): boolean; generateNewGuid(): void; toString(): string; equals(other: Uuid): boolean; }