feat(language-service): completions support for tuple array (#33928)
PR Close #33928
This commit is contained in:
@ -189,6 +189,7 @@ export class TemplateReference {
|
||||
title = 'Some title';
|
||||
hero: Hero = {id: 1, name: 'Windstorm'};
|
||||
heroes: Hero[] = [this.hero];
|
||||
tupleArray: [string, Hero] = ['test', this.hero];
|
||||
league: Hero[][] = [this.heroes];
|
||||
heroesByName: {[name: string]: Hero} = {};
|
||||
anyValue: any;
|
||||
|
Reference in New Issue
Block a user