From 1d40cf1c1d76f45888b4ce15f9a2151b81c7a8f9 Mon Sep 17 00:00:00 2001 From: Harry Chen Date: Thu, 21 May 2020 13:24:44 +0800 Subject: [PATCH] fix: fix missing typings (#171) --- packages/faas-typings/typings/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/faas-typings/typings/common.ts b/packages/faas-typings/typings/common.ts index b7a806e4..1a7e1f06 100644 --- a/packages/faas-typings/typings/common.ts +++ b/packages/faas-typings/typings/common.ts @@ -168,7 +168,7 @@ export interface FaaSHTTPRequest extends ContextDelegatedRequest { /** * Get Parsed path parameters from event */ - pathParameters; + pathParameters: any; } interface ContextDelegatedResponse {