Commit generated files

This commit is contained in:
Casper Warden
2017-12-13 15:23:50 +00:00
parent d0658438b9
commit b66f85c5bb
3097 changed files with 93947 additions and 1 deletions

9
dist/classes/UUID.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
/// <reference types="node" />
export declare class UUID {
private mUUID;
static zero(): UUID;
constructor(buf?: Buffer | string, pos?: number);
setUUID(val: string): boolean;
toString: () => string;
writeToBuffer(buf: Buffer, pos: number): void;
}