Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There are two interferring TSLint rules: - array-type (TSLint built-in) - prefer-array-literal (tslint-microsoft-contrib) For now: Valid types: - `string[]` - `SomeType[]` - `Array<GenericType<string>>` Invalid types: - `Array<string>` - `Array<SomeType>` - `GenericType<string>[]`
- Loading branch information