@typescript-deploys/pr-build 5.0.0-pr-50820-54 → 5.0.0-pr-51033-2
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 +5 -3
- package/lib/tsc.js +1403 -3874
- package/lib/tsserver.js +1474 -4020
- package/lib/tsserverlibrary.d.ts +4 -14
- package/lib/tsserverlibrary.js +1477 -4000
- package/lib/typescript.d.ts +4 -14
- package/lib/typescript.js +1474 -3968
- package/lib/typingsInstaller.js +273 -306
- package/package.json +1 -1
- package/lib/lib.decorators.d.ts +0 -352
- package/lib/lib.decorators.legacy.d.ts +0 -24
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> {
|