utils-lib-js 1.6.2 → 1.6.3
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/dist/bundle/array.d.ts +10 -0
- package/dist/bundle/base.d.ts +14 -0
- package/dist/bundle/element.d.ts +6 -0
- package/dist/bundle/event.d.ts +14 -0
- package/dist/bundle/function.d.ts +12 -0
- package/dist/bundle/index.d.ts +51 -0
- package/dist/bundle/index.js +1023 -0
- package/dist/bundle/object.d.ts +30 -0
- package/dist/bundle/request.d.ts +60 -0
- package/dist/bundle/static.d.ts +16 -0
- package/dist/bundle/storage.d.ts +9 -0
- package/dist/bundle/types.d.ts +103 -0
- package/dist/cjs/array.d.ts +10 -10
- package/dist/cjs/array.js +19 -19
- package/dist/cjs/base.d.ts +14 -14
- package/dist/cjs/base.js +56 -56
- package/dist/cjs/element.d.ts +6 -6
- package/dist/cjs/element.js +16 -16
- package/dist/cjs/event.d.ts +14 -14
- package/dist/cjs/event.js +53 -53
- package/dist/cjs/function.d.ts +12 -12
- package/dist/cjs/function.js +66 -66
- package/dist/cjs/index.d.ts +51 -51
- package/dist/cjs/index.js +54 -54
- package/dist/cjs/object.d.ts +30 -30
- package/dist/cjs/object.js +190 -190
- package/dist/cjs/request.d.ts +60 -60
- package/dist/cjs/request.js +239 -239
- package/dist/cjs/static.d.ts +16 -16
- package/dist/cjs/static.js +18 -18
- package/dist/cjs/storage.d.ts +9 -9
- package/dist/cjs/storage.js +41 -41
- package/dist/cjs/types.d.ts +103 -103
- package/dist/cjs/types.js +2 -2
- package/dist/esm/array.d.ts +10 -10
- package/dist/esm/array.js +13 -13
- package/dist/esm/base.d.ts +14 -14
- package/dist/esm/base.js +48 -48
- package/dist/esm/element.d.ts +6 -6
- package/dist/esm/element.js +12 -12
- package/dist/esm/event.d.ts +14 -14
- package/dist/esm/event.js +45 -45
- package/dist/esm/function.d.ts +12 -12
- package/dist/esm/function.js +59 -59
- package/dist/esm/index.d.ts +51 -51
- package/dist/esm/index.js +35 -35
- package/dist/esm/object.d.ts +30 -30
- package/dist/esm/object.js +174 -174
- package/dist/esm/request.d.ts +60 -60
- package/dist/esm/request.js +236 -236
- package/dist/esm/static.d.ts +16 -16
- package/dist/esm/static.js +15 -15
- package/dist/esm/storage.d.ts +9 -9
- package/dist/esm/storage.js +35 -35
- package/dist/esm/types.d.ts +103 -103
- package/dist/esm/types.js +1 -1
- package/dist/umd/array.d.ts +10 -0
- package/dist/umd/base.d.ts +14 -0
- package/dist/umd/element.d.ts +6 -0
- package/dist/umd/event.d.ts +14 -0
- package/dist/umd/function.d.ts +12 -0
- package/dist/umd/index.d.ts +51 -0
- package/dist/umd/index.js +1024 -0
- package/dist/umd/object.d.ts +30 -0
- package/dist/umd/request.d.ts +60 -0
- package/dist/umd/static.d.ts +16 -0
- package/dist/umd/storage.d.ts +9 -0
- package/dist/umd/types.d.ts +103 -0
- package/package.json +12 -4
- package/pnpm-lock.yaml +279 -8
- package/rollup.config.js +35 -0
- package/tsconfig.umd.json +6 -0
package/dist/esm/function.js
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
2
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
3
|
-
if (ar || !(i in from)) {
|
|
4
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
5
|
-
ar[i] = from[i];
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
9
|
-
};
|
|
10
|
-
var _this = this;
|
|
11
|
-
export var throttle = function (fn, time) {
|
|
12
|
-
var _timer = null;
|
|
13
|
-
return function () {
|
|
14
|
-
var args = [];
|
|
15
|
-
for (var _i = 0; _i < arguments.length; _i++) {
|
|
16
|
-
args[_i] = arguments[_i];
|
|
17
|
-
}
|
|
18
|
-
if (_timer)
|
|
19
|
-
return;
|
|
20
|
-
_timer = setTimeout(function () {
|
|
21
|
-
fn.call.apply(fn, __spreadArray([_this], args, false));
|
|
22
|
-
_timer = null;
|
|
23
|
-
}, time);
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
export var debounce = function (fn, time) {
|
|
27
|
-
var _timer = null;
|
|
28
|
-
return function () {
|
|
29
|
-
var args = [];
|
|
30
|
-
for (var _i = 0; _i < arguments.length; _i++) {
|
|
31
|
-
args[_i] = arguments[_i];
|
|
32
|
-
}
|
|
33
|
-
if (_timer) {
|
|
34
|
-
clearTimeout(_timer);
|
|
35
|
-
_timer = null;
|
|
36
|
-
}
|
|
37
|
-
_timer = setTimeout(function () {
|
|
38
|
-
fn.call.apply(fn, __spreadArray([_this], args, false));
|
|
39
|
-
}, time);
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
export var defer = function () {
|
|
43
|
-
var resolve, reject;
|
|
44
|
-
return {
|
|
45
|
-
promise: new Promise(function (_resolve, _reject) {
|
|
46
|
-
resolve = _resolve;
|
|
47
|
-
reject = _reject;
|
|
48
|
-
}),
|
|
49
|
-
resolve: resolve,
|
|
50
|
-
reject: reject
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
export var catchAwait = function (defer) { return defer.then(function (res) { return [null, res]; }).catch(function (err) { return [err]; }); };
|
|
54
|
-
export default {
|
|
55
|
-
throttle: throttle,
|
|
56
|
-
debounce: debounce,
|
|
57
|
-
defer: defer,
|
|
58
|
-
catchAwait: catchAwait,
|
|
59
|
-
};
|
|
1
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
2
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
3
|
+
if (ar || !(i in from)) {
|
|
4
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
5
|
+
ar[i] = from[i];
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
9
|
+
};
|
|
10
|
+
var _this = this;
|
|
11
|
+
export var throttle = function (fn, time) {
|
|
12
|
+
var _timer = null;
|
|
13
|
+
return function () {
|
|
14
|
+
var args = [];
|
|
15
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
16
|
+
args[_i] = arguments[_i];
|
|
17
|
+
}
|
|
18
|
+
if (_timer)
|
|
19
|
+
return;
|
|
20
|
+
_timer = setTimeout(function () {
|
|
21
|
+
fn.call.apply(fn, __spreadArray([_this], args, false));
|
|
22
|
+
_timer = null;
|
|
23
|
+
}, time);
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
export var debounce = function (fn, time) {
|
|
27
|
+
var _timer = null;
|
|
28
|
+
return function () {
|
|
29
|
+
var args = [];
|
|
30
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
31
|
+
args[_i] = arguments[_i];
|
|
32
|
+
}
|
|
33
|
+
if (_timer) {
|
|
34
|
+
clearTimeout(_timer);
|
|
35
|
+
_timer = null;
|
|
36
|
+
}
|
|
37
|
+
_timer = setTimeout(function () {
|
|
38
|
+
fn.call.apply(fn, __spreadArray([_this], args, false));
|
|
39
|
+
}, time);
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export var defer = function () {
|
|
43
|
+
var resolve, reject;
|
|
44
|
+
return {
|
|
45
|
+
promise: new Promise(function (_resolve, _reject) {
|
|
46
|
+
resolve = _resolve;
|
|
47
|
+
reject = _reject;
|
|
48
|
+
}),
|
|
49
|
+
resolve: resolve,
|
|
50
|
+
reject: reject
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
export var catchAwait = function (defer) { return defer.then(function (res) { return [null, res]; }).catch(function (err) { return [err]; }); };
|
|
54
|
+
export default {
|
|
55
|
+
throttle: throttle,
|
|
56
|
+
debounce: debounce,
|
|
57
|
+
defer: defer,
|
|
58
|
+
catchAwait: catchAwait,
|
|
59
|
+
};
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
export * from "./object.js";
|
|
2
|
-
export * from "./base.js";
|
|
3
|
-
export * from "./array.js";
|
|
4
|
-
export * from "./function.js";
|
|
5
|
-
export * from "./element.js";
|
|
6
|
-
export * from "./static.js";
|
|
7
|
-
export * from "./types.js";
|
|
8
|
-
export * from "./request.js";
|
|
9
|
-
export * from "./event.js";
|
|
10
|
-
export * from "./storage.js";
|
|
11
|
-
export * from "event-message-center";
|
|
12
|
-
export * from "task-queue-lib";
|
|
13
|
-
declare const _default: {
|
|
14
|
-
setStorage: (key: string, val: any) => void;
|
|
15
|
-
getStorage: (key: string) => any;
|
|
16
|
-
clearStorage: (key: string) => void;
|
|
17
|
-
addHandler: import("./types.js").IAddHandler;
|
|
18
|
-
stopBubble: import("./types.js").IStopBubble;
|
|
19
|
-
stopDefault: import("./types.js").IStopDefault;
|
|
20
|
-
removeHandler: import("./types.js").IRemoveHandler;
|
|
21
|
-
dispatchEvent: import("./types.js").IDispatchEvent;
|
|
22
|
-
Request: typeof import("./request.js").Request;
|
|
23
|
-
types: typeof import("./static.js").types;
|
|
24
|
-
createElement: import("./types.js").ICreateElement
|
|
25
|
-
throttle: import("./types.js").IThrottle;
|
|
26
|
-
debounce: import("./types.js").IDebounce;
|
|
27
|
-
defer: import("./types.js").IDefer;
|
|
28
|
-
catchAwait: import("./types.js").ICatchAwait<Promise<any>>;
|
|
29
|
-
arrayRandom: import("./types.js").IArrayRandom<any[]>;
|
|
30
|
-
arrayUniq: import("./types.js").IArrayUniq<any[]>;
|
|
31
|
-
arrayDemote: import("./types.js").IArrayDemote<import("./types.js").IDemoteArray<any>>;
|
|
32
|
-
randomNum: import("./types.js").IRandomNum;
|
|
33
|
-
urlSplit: import("./types.js").IUrlSplit;
|
|
34
|
-
urlJoin: import("./types.js").IUrlJoin;
|
|
35
|
-
getType: import("./types.js").IGetType<import("./static.js").types>;
|
|
36
|
-
getTypeByList: import("./types.js").IGetTypeByList;
|
|
37
|
-
getValue: import("./types.js").IGetValue;
|
|
38
|
-
setValue: import("./types.js").ISetValue;
|
|
39
|
-
mixIn: import("./types.js").IMixIn;
|
|
40
|
-
enumInversion: import("./types.js").IEnumInversion;
|
|
41
|
-
isNotObject: (source: any, type: any) => boolean;
|
|
42
|
-
cloneDeep: import("./types.js").ICloneDeep;
|
|
43
|
-
createObjectVariable: import("./types.js").ICreateObjectVariable;
|
|
44
|
-
createObject: import("./types.js").ICreateObject;
|
|
45
|
-
inherit: import("./types.js").IInherit;
|
|
46
|
-
getInstance: import("./types.js").IGetInstance;
|
|
47
|
-
classDecorator: import("./types.js").IClassDecorator;
|
|
48
|
-
stringToJson: import("./types.js").IStringToJson;
|
|
49
|
-
jsonToString: import("./types.js").IJsonToString;
|
|
50
|
-
};
|
|
51
|
-
export default _default;
|
|
1
|
+
export * from "./object.js";
|
|
2
|
+
export * from "./base.js";
|
|
3
|
+
export * from "./array.js";
|
|
4
|
+
export * from "./function.js";
|
|
5
|
+
export * from "./element.js";
|
|
6
|
+
export * from "./static.js";
|
|
7
|
+
export * from "./types.js";
|
|
8
|
+
export * from "./request.js";
|
|
9
|
+
export * from "./event.js";
|
|
10
|
+
export * from "./storage.js";
|
|
11
|
+
export * from "event-message-center";
|
|
12
|
+
export * from "task-queue-lib";
|
|
13
|
+
declare const _default: {
|
|
14
|
+
setStorage: (key: string, val: any) => void;
|
|
15
|
+
getStorage: (key: string) => any;
|
|
16
|
+
clearStorage: (key: string) => void;
|
|
17
|
+
addHandler: import("./types.js").IAddHandler;
|
|
18
|
+
stopBubble: import("./types.js").IStopBubble;
|
|
19
|
+
stopDefault: import("./types.js").IStopDefault;
|
|
20
|
+
removeHandler: import("./types.js").IRemoveHandler;
|
|
21
|
+
dispatchEvent: import("./types.js").IDispatchEvent;
|
|
22
|
+
Request: typeof import("./request.js").Request;
|
|
23
|
+
types: typeof import("./static.js").types;
|
|
24
|
+
createElement: import("./types.js").ICreateElement;
|
|
25
|
+
throttle: import("./types.js").IThrottle;
|
|
26
|
+
debounce: import("./types.js").IDebounce;
|
|
27
|
+
defer: import("./types.js").IDefer;
|
|
28
|
+
catchAwait: import("./types.js").ICatchAwait<Promise<any>>;
|
|
29
|
+
arrayRandom: import("./types.js").IArrayRandom<any[]>;
|
|
30
|
+
arrayUniq: import("./types.js").IArrayUniq<any[]>;
|
|
31
|
+
arrayDemote: import("./types.js").IArrayDemote<import("./types.js").IDemoteArray<any>>;
|
|
32
|
+
randomNum: import("./types.js").IRandomNum;
|
|
33
|
+
urlSplit: import("./types.js").IUrlSplit;
|
|
34
|
+
urlJoin: import("./types.js").IUrlJoin;
|
|
35
|
+
getType: import("./types.js").IGetType<import("./static.js").types>;
|
|
36
|
+
getTypeByList: import("./types.js").IGetTypeByList;
|
|
37
|
+
getValue: import("./types.js").IGetValue;
|
|
38
|
+
setValue: import("./types.js").ISetValue;
|
|
39
|
+
mixIn: import("./types.js").IMixIn;
|
|
40
|
+
enumInversion: import("./types.js").IEnumInversion;
|
|
41
|
+
isNotObject: (source: any, type: any) => boolean;
|
|
42
|
+
cloneDeep: import("./types.js").ICloneDeep;
|
|
43
|
+
createObjectVariable: import("./types.js").ICreateObjectVariable;
|
|
44
|
+
createObject: import("./types.js").ICreateObject;
|
|
45
|
+
inherit: import("./types.js").IInherit;
|
|
46
|
+
getInstance: import("./types.js").IGetInstance;
|
|
47
|
+
classDecorator: import("./types.js").IClassDecorator;
|
|
48
|
+
stringToJson: import("./types.js").IStringToJson;
|
|
49
|
+
jsonToString: import("./types.js").IJsonToString;
|
|
50
|
+
};
|
|
51
|
+
export default _default;
|
package/dist/esm/index.js
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
export * from "./object.js";
|
|
13
|
-
export * from "./base.js";
|
|
14
|
-
export * from "./array.js";
|
|
15
|
-
export * from "./function.js";
|
|
16
|
-
export * from "./element.js";
|
|
17
|
-
export * from "./static.js";
|
|
18
|
-
export * from "./types.js";
|
|
19
|
-
export * from "./request.js";
|
|
20
|
-
export * from "./event.js";
|
|
21
|
-
export * from "./storage.js";
|
|
22
|
-
export * from "event-message-center";
|
|
23
|
-
export * from "task-queue-lib";
|
|
24
|
-
import object from "./object.js";
|
|
25
|
-
import base from "./base.js";
|
|
26
|
-
import array from "./array.js";
|
|
27
|
-
import __function from "./function.js";
|
|
28
|
-
import element from "./element.js";
|
|
29
|
-
import __static from "./static.js";
|
|
30
|
-
import request from "./request.js";
|
|
31
|
-
import event from "./event.js";
|
|
32
|
-
import storage from "./storage.js";
|
|
33
|
-
import eventMessageCenter from "event-message-center";
|
|
34
|
-
import taskQueueLib from "task-queue-lib";
|
|
35
|
-
export default __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, object), base), array), __function), element), __static), request), event), storage), eventMessageCenter), taskQueueLib);
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
export * from "./object.js";
|
|
13
|
+
export * from "./base.js";
|
|
14
|
+
export * from "./array.js";
|
|
15
|
+
export * from "./function.js";
|
|
16
|
+
export * from "./element.js";
|
|
17
|
+
export * from "./static.js";
|
|
18
|
+
export * from "./types.js";
|
|
19
|
+
export * from "./request.js";
|
|
20
|
+
export * from "./event.js";
|
|
21
|
+
export * from "./storage.js";
|
|
22
|
+
export * from "event-message-center";
|
|
23
|
+
export * from "task-queue-lib";
|
|
24
|
+
import object from "./object.js";
|
|
25
|
+
import base from "./base.js";
|
|
26
|
+
import array from "./array.js";
|
|
27
|
+
import __function from "./function.js";
|
|
28
|
+
import element from "./element.js";
|
|
29
|
+
import __static from "./static.js";
|
|
30
|
+
import request from "./request.js";
|
|
31
|
+
import event from "./event.js";
|
|
32
|
+
import storage from "./storage.js";
|
|
33
|
+
import eventMessageCenter from "event-message-center";
|
|
34
|
+
import taskQueueLib from "task-queue-lib";
|
|
35
|
+
export default __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, object), base), array), __function), element), __static), request), event), storage), eventMessageCenter), taskQueueLib);
|
package/dist/esm/object.d.ts
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { IGetValue, ISetValue, IMixIn, ICloneDeep, ICreateObjectVariable, IEnumInversion, IInherit, ICreateObject, IGetInstance, IClassDecorator, IStringToJson, IJsonToString } from "./index.js";
|
|
2
|
-
export declare const getValue: IGetValue;
|
|
3
|
-
export declare const setValue: ISetValue;
|
|
4
|
-
export declare const mixIn: IMixIn;
|
|
5
|
-
export declare const enumInversion: IEnumInversion;
|
|
6
|
-
export declare const isNotObject: (source: any, type: any) => boolean;
|
|
7
|
-
export declare const cloneDeep: ICloneDeep;
|
|
8
|
-
export declare const createObjectVariable: ICreateObjectVariable;
|
|
9
|
-
export declare const createObject: ICreateObject;
|
|
10
|
-
export declare const inherit: IInherit;
|
|
11
|
-
export declare const getInstance: IGetInstance;
|
|
12
|
-
export declare const classDecorator: IClassDecorator;
|
|
13
|
-
export declare const stringToJson: IStringToJson;
|
|
14
|
-
export declare const jsonToString: IJsonToString;
|
|
15
|
-
declare const _default: {
|
|
16
|
-
getValue: IGetValue;
|
|
17
|
-
setValue: ISetValue;
|
|
18
|
-
mixIn: IMixIn;
|
|
19
|
-
enumInversion: IEnumInversion;
|
|
20
|
-
isNotObject: (source: any, type: any) => boolean;
|
|
21
|
-
cloneDeep: ICloneDeep;
|
|
22
|
-
createObjectVariable: ICreateObjectVariable;
|
|
23
|
-
createObject: ICreateObject;
|
|
24
|
-
inherit: IInherit;
|
|
25
|
-
getInstance: IGetInstance;
|
|
26
|
-
classDecorator: IClassDecorator;
|
|
27
|
-
stringToJson: IStringToJson;
|
|
28
|
-
jsonToString: IJsonToString;
|
|
29
|
-
};
|
|
30
|
-
export default _default;
|
|
1
|
+
import { IGetValue, ISetValue, IMixIn, ICloneDeep, ICreateObjectVariable, IEnumInversion, IInherit, ICreateObject, IGetInstance, IClassDecorator, IStringToJson, IJsonToString } from "./index.js";
|
|
2
|
+
export declare const getValue: IGetValue;
|
|
3
|
+
export declare const setValue: ISetValue;
|
|
4
|
+
export declare const mixIn: IMixIn;
|
|
5
|
+
export declare const enumInversion: IEnumInversion;
|
|
6
|
+
export declare const isNotObject: (source: any, type: any) => boolean;
|
|
7
|
+
export declare const cloneDeep: ICloneDeep;
|
|
8
|
+
export declare const createObjectVariable: ICreateObjectVariable;
|
|
9
|
+
export declare const createObject: ICreateObject;
|
|
10
|
+
export declare const inherit: IInherit;
|
|
11
|
+
export declare const getInstance: IGetInstance;
|
|
12
|
+
export declare const classDecorator: IClassDecorator;
|
|
13
|
+
export declare const stringToJson: IStringToJson;
|
|
14
|
+
export declare const jsonToString: IJsonToString;
|
|
15
|
+
declare const _default: {
|
|
16
|
+
getValue: IGetValue;
|
|
17
|
+
setValue: ISetValue;
|
|
18
|
+
mixIn: IMixIn;
|
|
19
|
+
enumInversion: IEnumInversion;
|
|
20
|
+
isNotObject: (source: any, type: any) => boolean;
|
|
21
|
+
cloneDeep: ICloneDeep;
|
|
22
|
+
createObjectVariable: ICreateObjectVariable;
|
|
23
|
+
createObject: ICreateObject;
|
|
24
|
+
inherit: IInherit;
|
|
25
|
+
getInstance: IGetInstance;
|
|
26
|
+
classDecorator: IClassDecorator;
|
|
27
|
+
stringToJson: IStringToJson;
|
|
28
|
+
jsonToString: IJsonToString;
|
|
29
|
+
};
|
|
30
|
+
export default _default;
|