From 1436b17cd246b68dc7e1434d682ebe8bf2a327a1 Mon Sep 17 00:00:00 2001 From: KeitaNishimoto Date: Tue, 28 Mar 2017 22:46:35 +0900 Subject: [PATCH] fix Corrected the structure of "AuthResponseContext" was wrong --- types/aws-lambda/index.d.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/types/aws-lambda/index.d.ts b/types/aws-lambda/index.d.ts index d8507ef7de..4e94e5782c 100644 --- a/types/aws-lambda/index.d.ts +++ b/types/aws-lambda/index.d.ts @@ -221,9 +221,7 @@ interface Statement { * http://docs.aws.amazon.com/apigateway/latest/developerguide/use-custom-authorizer.html#api-gateway-custom-authorizer-output */ interface AuthResponseContext { - stringKey: string; - numberKey: number; - booleanKey: boolean; + [name: string]: string | number | boolean; } /**