TypeScript/tests/cases/conformance/types/typeAliases/reservedNamesInAliases.ts
2016-12-22 10:06:42 +08:00

7 lines
120 B
TypeScript

interface I {}
type any = I;
type number = I;
type boolean = I;
type string = I;
type void = I;
type object = I;