smartunique/dist/index.d.ts
2017-07-14 18:53:10 +02:00

10 lines
336 B
TypeScript

/**
* 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;