@typescript-deploys/pr-build 5.0.0-pr-50820-54 → 5.0.0-pr-51753-8

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
  /////////////////////////////
@@ -1506,6 +1503,11 @@ interface TypedPropertyDescriptor<T> {
1506
1503
  set?: (value: T) => void;
1507
1504
  }
1508
1505
 
1506
+ declare type ClassDecorator = <TFunction extends Function>(target: TFunction) => TFunction | void;
1507
+ declare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void;
1508
+ declare type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;
1509
+ declare type ParameterDecorator = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void;
1510
+
1509
1511
  declare type PromiseConstructorLike = new <T>(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void) => PromiseLike<T>;
1510
1512
 
1511
1513
  interface PromiseLike<T> {