@typescript-deploys/pr-build 5.0.0-pr-50820-81 → 5.0.0-pr-52217-7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/lib.es5.d.ts CHANGED
@@ -18,9 +18,6 @@ and limitations under the License.
18
18
  /// <reference no-default-lib="true"/>
19
19
 
20
20
 
21
- /// <reference lib="decorators" />
22
- /// <reference lib="decorators.legacy" />
23
-
24
21
  /////////////////////////////
25
22
  /// ECMAScript APIs
26
23
  /////////////////////////////
@@ -1513,6 +1510,11 @@ interface TypedPropertyDescriptor<T> {
1513
1510
  set?: (value: T) => void;
1514
1511
  }
1515
1512
 
1513
+ declare type ClassDecorator = <TFunction extends Function>(target: TFunction) => TFunction | void;
1514
+ declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void;
1515
+ declare type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;
1516
+ declare type ParameterDecorator = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void;
1517
+
1516
1518
  declare type PromiseConstructorLike = new <T>(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void) => PromiseLike<T>;
1517
1519
 
1518
1520
  interface PromiseLike<T> {