clientnode 3.0.851 → 3.0.855
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/index.d.ts +1 -0
- package/package.json +5 -1
- package/type.d.ts +2 -0
package/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
/// <reference types="webpack-env" />
|
|
2
3
|
import { ChildProcess } from 'child_process';
|
|
3
4
|
import { AnyFunction, CheckReachabilityOptions, CompareOptions, CompilationResult, Encoding, EvaluationResult, File, FirstParameter, GetterFunction, ImportFunction, LockCallbackFunction, Mapping, ObjectMaskConfiguration, Options, Page, PaginateOptions, ParametersExceptFirst, PlainObject, ProcessCloseCallback, ProcessErrorCallback, ProcessHandler, ProxyHandler, ProxyType, QueryParameters, RecursiveEvaluateable, RecursivePartial, RelativePosition, SecondParameter, Selector, SetterFunction, TimeoutPromise, UnknownFunction, $DomNodes, $Global, $T, $TStatic } from './type';
|
|
4
5
|
export declare const CloseEventNames: readonly ["close", "exit", "SIGINT", "SIGTERM", "SIGQUIT", "uncaughtException"];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clientnode",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.855",
|
|
4
4
|
"description": "upgrade to object orientated rock solid plugins",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"client",
|
|
@@ -68,9 +68,11 @@
|
|
|
68
68
|
"@types/jest": "*",
|
|
69
69
|
"@types/jquery": "*",
|
|
70
70
|
"@types/jsdom": "*",
|
|
71
|
+
"@types/mini-css-extract-plugin": "*",
|
|
71
72
|
"@types/node": "*",
|
|
72
73
|
"@types/prop-types": "*",
|
|
73
74
|
"@types/rimraf": "*",
|
|
75
|
+
"@types/webpack-env": "*",
|
|
74
76
|
"@types/workbox-webpack-plugin": "*",
|
|
75
77
|
"@typescript-eslint/eslint-plugin": "*",
|
|
76
78
|
"@typescript-eslint/parser": "*",
|
|
@@ -78,6 +80,8 @@
|
|
|
78
80
|
"eslint": "*",
|
|
79
81
|
"eslint-config-google": "*",
|
|
80
82
|
"eslint-plugin-jsdoc": "*",
|
|
83
|
+
"favicons-webpack-plugin": "*",
|
|
84
|
+
"image-minimizer-webpack-plugin": "*",
|
|
81
85
|
"jest": "*",
|
|
82
86
|
"jquery": "*",
|
|
83
87
|
"jsdoc": "*",
|
package/type.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
/// <reference types="webpack-env" />
|
|
2
3
|
import { Dirent as DirectoryEntry, Stats as FileStats } from 'fs';
|
|
3
4
|
import Tools, { BoundTools } from './index';
|
|
4
5
|
import { DefinedSymbol, ThrowSymbol, UndefinedSymbol } from './testHelper';
|
|
5
6
|
export declare type AnyFunction = (..._parameters: Array<any>) => any;
|
|
7
|
+
export declare type Unpacked<T> = T extends (infer U)[] ? U : T extends (..._parameters: Array<unknown>) => infer U ? U : T extends Promise<infer U> ? U : T;
|
|
6
8
|
export declare type FirstParameter<FunctionType extends AnyFunction> = Parameters<FunctionType>[0];
|
|
7
9
|
export declare type SecondParameter<FunctionType extends AnyFunction> = Parameters<FunctionType>[1];
|
|
8
10
|
export declare type ThirdParameter<FunctionType extends AnyFunction> = Parameters<FunctionType>[2];
|