added uuid v5 to uuidStatic List (#20634)

You was not able to do "  import {v5} from 'uuid' ", this will fix it
This commit is contained in:
Daniel Milbrandt
2017-10-17 18:15:27 +02:00
committed by Andy
parent bc2da03e91
commit ce9e109a99

View File

@@ -10,11 +10,12 @@
// because of the existing uuid-js npm types package being at 3.3.28,
// meaning that `npm install @types/uuid` was installing the typings for uuid-js, not this
import { v1, v4 } from './interfaces';
import { v1, v4, v5 } from './interfaces';
interface UuidStatic {
v1: v1;
v4: v4;
v5: v5;
}
declare const uuid: UuidStatic & v4;