smartunique/dist/index.d.ts
2017-07-17 17:01:10 +02:00

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;