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