Fix incorrect tuple usage and syntax

This commit is contained in:
Nathan Shively-Sanders
2017-11-09 13:55:03 -08:00
parent c6835d5e17
commit a364bb7a8c
9 changed files with 22 additions and 21 deletions

View File

@@ -331,9 +331,9 @@ interface PolicyDocument {
* http://docs.aws.amazon.com/apigateway/latest/developerguide/use-custom-authorizer.html#api-gateway-custom-authorizer-output
*/
interface Statement {
Action: string | [string];
Action: string | string[];
Effect: string;
Resource: string | [string];
Resource: string | string[];
}
/**