generateUniqueID.d.ts 200 Bytes
/**
 * 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;