Update ajv.d.ts

master
Donald Pipowitch 2017-02-21 14:55:57 +01:00 committed by GitHub
parent e17b55b96d
commit 6cc12130da
1 changed files with 5 additions and 1 deletions

6
lib/ajv.d.ts vendored
View File

@ -202,7 +202,7 @@ declare namespace ajv {
MultipleOfParams | PatternParams | RequiredParams |
TypeParams | UniqueItemsParams | CustomParams |
PatternGroupsParams | PatternRequiredParams |
SwitchParams | NoParams;
SwitchParams | NoParams | EnumParams;
interface RefParams {
ref: string;
@ -273,6 +273,10 @@ declare namespace ajv {
}
interface NoParams {}
interface EnumParams {
allowedValues: Array<any>;
}
}
export = ajv;