tslint-consistent-codestyle icon indicating copy to clipboard operation
tslint-consistent-codestyle copied to clipboard

no-unnecessary-type-annotation: false positive with array of tuples

Open ajafff opened this issue 8 years ago • 0 comments

let foo: Array<[string, boolean]> = [
  ['a', true],
  ['b', false],
];

ajafff avatar Jan 18 '18 11:01 ajafff