Skip to content

Commit

Permalink
Update ajv.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldpipowitch committed Feb 21, 2017
1 parent e17b55b commit 6cc1213
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/ajv.d.ts
Expand Up @@ -202,7 +202,7 @@ declare namespace ajv {
MultipleOfParams | PatternParams | RequiredParams |
TypeParams | UniqueItemsParams | CustomParams |
PatternGroupsParams | PatternRequiredParams |
SwitchParams | NoParams;
SwitchParams | NoParams | EnumParams;

interface RefParams {
ref: string;
Expand Down Expand Up @@ -273,6 +273,10 @@ declare namespace ajv {
}

interface NoParams {}

interface EnumParams {
allowedValues: Array<any>;
}
}

export = ajv;

0 comments on commit 6cc1213

Please sign in to comment.