Searched refs:PropertyDecorator (Results 1 – 22 of 22) sorted by relevance
/third_party/typescript/tests/cases/fourslash/etslib/ |
D | common.d.ts | 21 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/ |
D | decoratorMetadataConditionalType.types | 2 declare function d(): PropertyDecorator; 3 >d : () => PropertyDecorator 9 >d() : PropertyDecorator 10 >d : () => PropertyDecorator 20 >d() : PropertyDecorator 21 >d : () => PropertyDecorator
|
D | metadataOfClassFromAlias.types | 13 function annotation(): PropertyDecorator { 14 >annotation : () => PropertyDecorator 24 >annotation() : PropertyDecorator 25 >annotation : () => PropertyDecorator
|
D | metadataOfClassFromAlias2.types | 13 function annotation(): PropertyDecorator { 14 >annotation : () => PropertyDecorator 24 >annotation() : PropertyDecorator 25 >annotation : () => PropertyDecorator
|
D | metadataOfClassFromAlias.symbols | 13 function annotation(): PropertyDecorator { 15 >PropertyDecorator : Symbol(PropertyDecorator, Decl(lib.es5.d.ts, --, --))
|
D | metadataOfClassFromAlias2.symbols | 13 function annotation(): PropertyDecorator { 15 >PropertyDecorator : Symbol(PropertyDecorator, Decl(lib.es5.d.ts, --, --))
|
D | decoratorMetadataConditionalType.symbols | 2 declare function d(): PropertyDecorator; 4 >PropertyDecorator : Symbol(PropertyDecorator, Decl(lib.es5.d.ts, --, --))
|
D | potentiallyUncalledDecorators.types | 16 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 {
|
D | potentiallyUncalledDecorators.symbols | 16 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, --, --))
|
D | potentiallyUncalledDecorators.js | 9 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; } 25 interface OmniDecorator extends MethodDecorator, ClassDecorator, PropertyDecorator {
|
D | decoratorMetadataConditionalType.js | 2 declare function d(): PropertyDecorator;
|
D | metadataOfClassFromAlias2.js | 10 function annotation(): PropertyDecorator {
|
D | metadataOfClassFromAlias.js | 10 function annotation(): PropertyDecorator {
|
D | potentiallyUncalledDecorators.errors.txt | 50 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; } 66 interface OmniDecorator extends MethodDecorator, ClassDecorator, PropertyDecorator {
|
/third_party/typescript/tests/cases/compiler/ |
D | potentiallyUncalledDecorators.ts | 12 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; } 28 interface OmniDecorator extends MethodDecorator, ClassDecorator, PropertyDecorator {
|
D | metadataOfClassFromAlias.ts | 13 function annotation(): PropertyDecorator {
|
D | metadataOfClassFromAlias2.ts | 13 function annotation(): PropertyDecorator {
|
D | decoratorMetadataConditionalType.ts | 4 declare function d(): PropertyDecorator;
|
/third_party/typescript_eslint/packages/scope-manager/src/lib/ |
D | es5.ts | 302 PropertyDecorator: {
|
/third_party/typescript/src/lib/ |
D | es5.d.ts | 1407 declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void; alias
|
/third_party/typescript/lib/ |
D | lib.es5.d.ts | 1427 declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void; alias
|
/third_party/typescript/tests/lib/ |
D | lib.d.ts | 1196 declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void; alias
|