@kizmann/pico-js 1.0.3 → 1.0.5
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/package.json +1 -2
- package/types/index.d.ts +15 -15
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kizmann/pico-js",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.5",
|
4
4
|
"license": "MIT",
|
5
5
|
"type": "module",
|
6
6
|
"private": false,
|
@@ -43,7 +43,6 @@
|
|
43
43
|
},
|
44
44
|
"dependencies": {
|
45
45
|
"docsify": "^4.13.1",
|
46
|
-
"global": "^4.4.0",
|
47
46
|
"moment": "^2.30.1"
|
48
47
|
}
|
49
48
|
}
|
package/types/index.d.ts
CHANGED
@@ -20,22 +20,22 @@ export declare module "@kizmann/pico-js" {
|
|
20
20
|
|
21
21
|
function UUID(): string;
|
22
22
|
|
23
|
-
const Cookie: Cookie;
|
24
|
-
const Data: Data;
|
25
|
-
const Element: Element;
|
26
|
-
const Event: Event;
|
27
|
-
const Locale: Locale;
|
28
|
-
const Map: Map;
|
29
|
-
const Queue: Queue;
|
30
|
-
const Route: Route;
|
23
|
+
const Cookie: typeof Cookie;
|
24
|
+
const Data: typeof Data;
|
25
|
+
const Element: typeof Element;
|
26
|
+
const Event: typeof Event;
|
27
|
+
const Locale: typeof Locale;
|
28
|
+
const Map: typeof Map;
|
29
|
+
const Queue: typeof Queue;
|
30
|
+
const Route: typeof Route;
|
31
31
|
|
32
|
-
const Dom: Dom;
|
33
|
-
const Arr: Arr;
|
34
|
-
const Obj: Obj;
|
35
|
-
const Any: Any;
|
36
|
-
const Str: Str;
|
37
|
-
const Num: Num;
|
38
|
-
const Now: Now;
|
32
|
+
const Dom: typeof Dom;
|
33
|
+
const Arr: typeof Arr;
|
34
|
+
const Obj: typeof Obj;
|
35
|
+
const Any: typeof Any;
|
36
|
+
const Str: typeof Str;
|
37
|
+
const Num: typeof Num;
|
38
|
+
const Now: typeof Now;
|
39
39
|
|
40
40
|
export {
|
41
41
|
UUID,
|