Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
15 lines (10 loc) · 198 Bytes

no-single-element-tuple-type.md

File metadata and controls

15 lines (10 loc) · 198 Bytes

no-single-element-tuple-type

Some users mistakenly write [T] when then intend to write an array type T[].

Bad:

export const x: [T];

Good:

export const x: T[];