10 lines
336 B
TypeScript
10 lines
336 B
TypeScript
/**
|
|
* returns short strings that are unique to very high degree od certainty
|
|
*/
|
|
export declare let getShortId: () => string;
|
|
/**
|
|
* returns strings that are unique to a very high degree of certainty
|
|
*/
|
|
export declare let getUuidv4: () => string;
|
|
export declare let getUuidv5: (customStringArg: string, namespaceArg?: any) => string;
|