Closed hongbo-miao closed 8 years ago
Maybe add a style for array?
names: string[]; levels: Level[]; interface User { emails: { address: string, verified: boolean }[] }
or
names: Array<string>; levels: Array<Level>; interface User { emails: Array<{ address: string, verified: boolean }> }
Hmm.. I think this may belong to TypeScript style. So I closed it.
@Hongbo-Miao the first style is what is usually used. I agree, it is mostly a TypeScript style guidelines.
@mgechev thanks!
Maybe add a style for array?
or