1 | export type Binary = Buffer | NodeJS.TypedArray | DataView;
|
2 | export type BinaryLike = string | Binary;
|
3 | export declare const BASE_UUID = "-0000-1000-8000-0026BB765291";
|
4 | export declare function generate(data: BinaryLike): string;
|
5 | export declare function isValid(UUID: string): boolean;
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | export declare function unparse(buf: Buffer): string;
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 | export declare function unparse(buf: Buffer, offset: number): string;
|
19 | export declare function write(uuid: string): Buffer;
|
20 | export declare function write(uuid: string, buf: Buffer, offset: number): void;
|
21 | export declare function toShortForm(uuid: string, base?: string): string;
|
22 | export declare function toLongForm(uuid: string, base?: string): string;
|
23 |
|
\ | No newline at end of file |