Files
DefinitelyTyped/types/uuid/v5.d.ts
William Lohan 96da366c9b update uuid
2017-08-30 12:57:33 -07:00

13 lines
275 B
TypeScript

import { v5 } from './interfaces';
interface v5Static {
// https://github.com/kelektiv/node-uuid/blob/master/v5.js#L47
DNS: string;
// https://github.com/kelektiv/node-uuid/blob/master/v5.js#L48
URL: string;
}
declare const v5: v5Static & v5;
export = v5;