11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
|
|
/**
|
||
|
|
* Universal UUID implementation
|
||
|
|
* Works in all environments: Browser, Node.js, Serverless
|
||
|
|
*/
|
||
|
|
export declare function v4(): string;
|
||
|
|
export { v4 as uuidv4 };
|
||
|
|
declare const _default: {
|
||
|
|
v4: typeof v4;
|
||
|
|
};
|
||
|
|
export default _default;
|