TypeScript/tests/baselines/reference/decoratorOnClassProperty6.types
2015-04-15 16:44:20 -07:00

14 lines
302 B
Plaintext

=== tests/cases/conformance/decorators/class/property/decoratorOnClassProperty6.ts ===
declare function dec(target: Function): void;
>dec : (target: Function) => void
>target : Function
>Function : Function
class C {
>C : C
@dec prop;
>dec : (target: Function) => void
>prop : any
}