TypeScript/tests/cases/conformance/decorators/invalid/decoratorOnTypeAlias.ts
2015-03-17 14:21:13 -07:00

4 lines
No EOL
61 B
TypeScript

declare function dec<T>(target: T): T;
@dec
type T = number;