arguments cannot be null

This commit is contained in:
Kagami Sascha Rosylight
2018-03-12 17:59:14 +09:00
parent f7682be37f
commit 9ac108dbc2
+1 -1
View File
@@ -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[];
}