This repository has been archived on 2026-09-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
open-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;