File size: 382 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 |
/**
* A function that generates a random id
* @returns An id
*/
export declare function generateId(): string;
export type IdObj<T extends readonly string[]> = Expand<{
[K in T[number]]: string;
}>;
export declare function generateIds<T extends readonly string[]>(args: T): IdObj<T>;
export declare function stringifiedIdObjType<T extends readonly string[]>(args: T): string;
|