fix Corrected the structure of "AuthResponseContext" was wrong

This commit is contained in:
KeitaNishimoto
2017-03-28 22:46:35 +09:00
parent 732279b7c9
commit 1436b17cd2
+1 -3
View File
@@ -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;
}
/**