From c10b0b893211575855367ecc65b28d8d27563309 Mon Sep 17 00:00:00 2001 From: Gabriel Castro Date: Mon, 12 Feb 2018 12:02:12 -0500 Subject: [PATCH] fix swagger-schema-official to work with typescript 2.7 --- types/swagger-schema-official/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/swagger-schema-official/index.d.ts b/types/swagger-schema-official/index.d.ts index 48173c0883..dc184d3e91 100644 --- a/types/swagger-schema-official/index.d.ts +++ b/types/swagger-schema-official/index.d.ts @@ -87,7 +87,7 @@ export interface Path { options?: Operation; head?: Operation; patch?: Operation; - parameters?: [Parameter]; + parameters?: Parameter[]; } // ----------------------------- Operation -----------------------------------