mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
13 lines
275 B
TypeScript
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;
|