6 lines
200 B
TypeScript
6 lines
200 B
TypeScript
/**
|
|
* Performantly generate a unique, 27-char string by combining the current
|
|
* timestamp with a 13-digit random number.
|
|
* @return {string}
|
|
*/
|
|
export declare const generateUniqueID: () => string;
|