brainy/dist/universal/uuid.d.ts

11 lines
236 B
TypeScript
Raw Normal View History

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