smartunique/dist/index.d.ts

10 lines
336 B
TypeScript
Raw Permalink Normal View History

2017-07-14 16:53:10 +00:00
/**
* returns short strings that are unique to very high degree od certainty
*/
export declare let getShortId: () => string;
/**
* returns strings that are unique to a very high degree of certainty
*/
export declare let getUuidv4: () => string;
export declare let getUuidv5: (customStringArg: string, namespaceArg?: any) => string;