DefinitelyTyped/types/guid/index.d.ts
2017-10-30 10:36:15 -04:00

23 lines
489 B
TypeScript

// Type definitions for guid 1.0
// Project: https://github.com/dandean/guid
// Definitions by: Marc-Andre Roy <https://github.com/maroy1986>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
export = guid;
declare function guid(guid: object): object;
declare namespace guid {
const EMPTY: string;
const prototype: {
};
function create(): object;
function isGuid(value: string): boolean;
function raw(): string;
}