mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 21:31:12 +08:00
Fix incorrect tuple usage and syntax
This commit is contained in:
4
types/aws-lambda/index.d.ts
vendored
4
types/aws-lambda/index.d.ts
vendored
@@ -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[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user