Merge pull request #263 from dalcib/master

[typescript] Allow use 'new' operator
master
Evgeny Poberezkin 2016-08-06 00:06:39 +01:00 committed by GitHub
commit 27c612755a
1 changed files with 4 additions and 1 deletions

5
lib/ajv.d.ts vendored
View File

@ -1,4 +1,7 @@
declare function ajv (options?: ajv.Options): ajv.Ajv;
declare var ajv: {
(options?: ajv.Options): ajv.Ajv;
new (options?: ajv.Options): ajv.Ajv;
}
declare namespace ajv {
interface Ajv {