TypeScript/tests/baselines/reference/decoratorOnClassProperty6.types

14 lines
302 B
Plaintext
Raw Normal View History

=== 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
}