From fa63fd564a015b875e4dab8156078de99e2c0a08 Mon Sep 17 00:00:00 2001 From: Richard Silverton Date: Tue, 17 Oct 2017 17:15:45 +0100 Subject: [PATCH] fix ReferenceOptions interface for Joi to include Hoek.reach options (#20635) --- types/joi/index.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/types/joi/index.d.ts b/types/joi/index.d.ts index 1b4c3fcbaf..02ac767427 100644 --- a/types/joi/index.d.ts +++ b/types/joi/index.d.ts @@ -138,6 +138,9 @@ export interface WhenOptions { export interface ReferenceOptions { separator?: string; contextPrefix?: string; + default?: any; + strict?: boolean; + functions?: boolean; } export interface IPOptions {