From 6be5ff65f94a6a5127a404ea03f7607c7f29ebaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C6=87=CA=98=C6=81=CC=86=C4=85=C6=87=CC=81?= Date: Mon, 8 Apr 2019 18:53:01 +0200 Subject: [PATCH] fix(types): add strictKeywords to Options interface (#975) --- lib/ajv.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ajv.d.ts b/lib/ajv.d.ts index 63f110a..8b29c5b 100644 --- a/lib/ajv.d.ts +++ b/lib/ajv.d.ts @@ -181,6 +181,7 @@ declare namespace ajv { useDefaults?: boolean | 'shared'; coerceTypes?: boolean | 'array'; strictDefaults?: boolean | 'log'; + strictKeywords?: boolean | 'log'; async?: boolean | string; transpile?: string | ((code: string) => string); meta?: boolean | object;