Home
last modified time | relevance | path

Searched refs:PropertyDecorator (Results 1 – 22 of 22) sorted by relevance

/third_party/typescript/tests/cases/fourslash/etslib/
Dcommon.d.ts21 declare const State: PropertyDecorator;
22 declare const Prop: PropertyDecorator;
23 declare const Link: PropertyDecorator;
24 declare const ObjectLink: PropertyDecorator;
25 declare const Provide: PropertyDecorator & ((value: string) => PropertyDecorator);
26 declare const Consume: PropertyDecorator & ((value: string) => PropertyDecorator);
27 declare const StorageProp: (value: string) => PropertyDecorator;
28 declare const StorageLink: (value: string) => PropertyDecorator;
29 declare const Watch: (value: string) => PropertyDecorator;
/third_party/typescript/tests/baselines/reference/
DdecoratorMetadataConditionalType.types2 declare function d(): PropertyDecorator;
3 >d : () => PropertyDecorator
9 >d() : PropertyDecorator
10 >d : () => PropertyDecorator
20 >d() : PropertyDecorator
21 >d : () => PropertyDecorator
DmetadataOfClassFromAlias.types13 function annotation(): PropertyDecorator {
14 >annotation : () => PropertyDecorator
24 >annotation() : PropertyDecorator
25 >annotation : () => PropertyDecorator
DmetadataOfClassFromAlias2.types13 function annotation(): PropertyDecorator {
14 >annotation : () => PropertyDecorator
24 >annotation() : PropertyDecorator
25 >annotation : () => PropertyDecorator
DmetadataOfClassFromAlias.symbols13 function annotation(): PropertyDecorator {
15 >PropertyDecorator : Symbol(PropertyDecorator, Decl(lib.es5.d.ts, --, --))
DmetadataOfClassFromAlias2.symbols13 function annotation(): PropertyDecorator {
15 >PropertyDecorator : Symbol(PropertyDecorator, Decl(lib.es5.d.ts, --, --))
DdecoratorMetadataConditionalType.symbols2 declare function d(): PropertyDecorator;
4 >PropertyDecorator : Symbol(PropertyDecorator, Decl(lib.es5.d.ts, --, --))
DpotentiallyUncalledDecorators.types16 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; }
17 >tracked : PropertyDecorator & ((...watchedProperties: string[]) => any)
24 >tracked : PropertyDecorator & ((...watchedProperties: string[]) => any)
37 >tracked : PropertyDecorator & ((...watchedProperties: string[]) => any)
56 interface OmniDecorator extends MethodDecorator, ClassDecorator, PropertyDecorator {
DpotentiallyUncalledDecorators.symbols16 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; }
18 >PropertyDecorator : Symbol(PropertyDecorator, Decl(lib.es5.d.ts, --, --))
51 interface OmniDecorator extends MethodDecorator, ClassDecorator, PropertyDecorator {
55 >PropertyDecorator : Symbol(PropertyDecorator, Decl(lib.es5.d.ts, --, --))
DpotentiallyUncalledDecorators.js9 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; }
25 interface OmniDecorator extends MethodDecorator, ClassDecorator, PropertyDecorator {
DdecoratorMetadataConditionalType.js2 declare function d(): PropertyDecorator;
DmetadataOfClassFromAlias2.js10 function annotation(): PropertyDecorator {
DmetadataOfClassFromAlias.js10 function annotation(): PropertyDecorator {
DpotentiallyUncalledDecorators.errors.txt50 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; }
66 interface OmniDecorator extends MethodDecorator, ClassDecorator, PropertyDecorator {
/third_party/typescript/tests/cases/compiler/
DpotentiallyUncalledDecorators.ts12 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; }
28 interface OmniDecorator extends MethodDecorator, ClassDecorator, PropertyDecorator {
DmetadataOfClassFromAlias.ts13 function annotation(): PropertyDecorator {
DmetadataOfClassFromAlias2.ts13 function annotation(): PropertyDecorator {
DdecoratorMetadataConditionalType.ts4 declare function d(): PropertyDecorator;
/third_party/typescript_eslint/packages/scope-manager/src/lib/
Des5.ts302 PropertyDecorator: {
/third_party/typescript/src/lib/
Des5.d.ts1407 declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void; alias
/third_party/typescript/lib/
Dlib.es5.d.ts1427 declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void; alias
/third_party/typescript/tests/lib/
Dlib.d.ts1196 declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void; alias