From 9ac108dbc2bcc3bbf2ef35ac2915b580149a8188 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Mon, 12 Mar 2018 17:59:14 +0900 Subject: [PATCH] arguments cannot be null --- types/webidl2/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/webidl2/index.d.ts b/types/webidl2/index.d.ts index a31fa3550e..9992642749 100644 --- a/types/webidl2/index.d.ts +++ b/types/webidl2/index.d.ts @@ -192,7 +192,7 @@ export interface OperationMemberType { /** The name of the operation. If a stringifier, may be null. */ name: string | null; /** An array of arguments for the operation. */ - arguments: Argument[] | null; + arguments: Argument[]; /** A list of extended attributes. */ extAttrs: ExtendedAttributes[]; }