We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b2a399 commit 5cc7dceCopy full SHA for 5cc7dce
1 file changed
src/parser.ts
@@ -579,7 +579,7 @@ export class Parser extends DiagnosticEmitter {
579
}
580
581
// '[' Type (',' Type)* ']'
582
- } else if (this.options && this.options.hasFeature(Feature.MultiValue) && token == Token.OpenBracket) {
+ } else if (this.options && this.options!.hasFeature(Feature.MultiValue) && token == Token.OpenBracket) {
583
let elements: TypeNode[] = [];
584
let elementNames: (IdentifierExpression | null)[] = [];
585
let hasElementNames = false;
0 commit comments