dphelper 3.0.5 → 3.0.7
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/dphelper.umd.js +26 -26
- package/index.js +18 -18
- package/package.json +5 -4
- package/postinstall.mjs +23 -0
- package/tools/ai/interface.d.ts +12 -0
- package/tools/anchor/interface.d.ts +7 -0
- package/tools/array/interface.d.ts +22 -0
- package/tools/audio/interface.d.ts +11 -0
- package/tools/avoid/interface.d.ts +3 -0
- package/tools/browser/interface.d.ts +11 -0
- package/tools/check/interface.d.ts +5 -0
- package/tools/color/interface.d.ts +7 -0
- package/tools/cookie/interface.d.ts +13 -0
- package/tools/coords/interface.d.ts +9 -0
- package/tools/credits/interface.d.ts +12 -0
- package/tools/date/interface.d.ts +26 -0
- package/tools/disable/interface.d.ts +9 -0
- package/tools/dispatch/interface.d.ts +5 -0
- package/tools/elements/interface.d.ts +4 -0
- package/tools/events/interface.d.ts +7 -0
- package/tools/fetch/interface.d.ts +16 -0
- package/tools/form/interface.d.ts +14 -0
- package/tools/format/interface.d.ts +4 -0
- package/tools/json/interface.d.ts +9 -0
- package/tools/load/interface.d.ts +9 -0
- package/tools/logging/interface.d.ts +9 -0
- package/tools/math/interface.d.ts +14 -0
- package/tools/memory/interface.d.ts +4 -0
- package/tools/navigation/interface.d.ts +5 -0
- package/tools/objects/interface.d.ts +16 -0
- package/tools/path/interface.d.ts +5 -0
- package/tools/promise/interface.d.ts +4 -0
- package/tools/sanitize/interface.d.ts +3 -0
- package/tools/screen/interface.d.ts +12 -0
- package/tools/scrollbar/interface.d.ts +10 -0
- package/tools/security/interface.d.ts +12 -0
- package/tools/shortcut/interface.d.ts +3 -0
- package/tools/socket/interface.d.ts +13 -0
- package/tools/sse/interface.d.ts +9 -0
- package/tools/svg/interface.d.ts +13 -0
- package/tools/sync/interface.d.ts +14 -0
- package/tools/system/interface.d.ts +3 -0
- package/tools/text/interface.d.ts +13 -0
- package/tools/timer/interface.d.ts +4 -0
- package/tools/tools/interface.d.ts +6 -0
- package/tools/translators/interface.d.ts +3 -0
- package/tools/triggers/interface.d.ts +5 -0
- package/tools/types/interface.d.ts +6 -0
- package/tools/ui/interface.d.ts +4 -0
- package/tools/window/interface.d.ts +10 -0
- package/types/dphelper.d.ts +578 -139
- package/types/index.d.ts +1 -47
- package/types/tools/navigation/index.d.ts +1 -0
package/types/index.d.ts
CHANGED
|
@@ -1,48 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
import "./scripts/setProps";
|
|
3
|
-
import "./tools/ai/index";
|
|
4
|
-
import "./tools/anchor/index";
|
|
5
|
-
import "./tools/array/index";
|
|
6
|
-
import "./tools/audio/index";
|
|
7
|
-
import "./tools/avoid/index";
|
|
8
|
-
import "./tools/browser/index";
|
|
9
|
-
import "./tools/check/index";
|
|
10
|
-
import "./tools/color/index";
|
|
11
|
-
import "./tools/cookie/index";
|
|
12
|
-
import "./tools/coords/index";
|
|
13
|
-
import "./tools/credits/index";
|
|
14
|
-
import "./tools/date/index";
|
|
15
|
-
import "./tools/disable/index";
|
|
16
|
-
import "./tools/dispatch/index";
|
|
17
|
-
import "./tools/elements/index";
|
|
18
|
-
import "./tools/events/index";
|
|
19
|
-
import "./tools/fetch/index";
|
|
20
|
-
import "./tools/form/index";
|
|
21
|
-
import "./tools/format/index";
|
|
22
|
-
import "./tools/json/index";
|
|
23
|
-
import "./tools/load/index";
|
|
24
|
-
import "./tools/logging/index";
|
|
25
|
-
import "./tools/math/index";
|
|
26
|
-
import "./tools/memory/index";
|
|
27
|
-
import "./tools/objects/index";
|
|
28
|
-
import "./tools/path/index";
|
|
29
|
-
import "./tools/promise/index";
|
|
30
|
-
import "./tools/sanitize/index";
|
|
31
|
-
import "./tools/screen/index";
|
|
32
|
-
import "./tools/scrollbar/index";
|
|
33
|
-
import "./tools/security/index";
|
|
34
|
-
import "./tools/shortcut/index";
|
|
35
|
-
import "./tools/socket/index";
|
|
36
|
-
import "./tools/sse/index";
|
|
37
|
-
import "./tools/svg/index";
|
|
38
|
-
import "./tools/sync/index";
|
|
39
|
-
import "./tools/system/index";
|
|
40
|
-
import "./tools/text/index";
|
|
41
|
-
import "./tools/timer/index";
|
|
42
|
-
import "./tools/tools/index";
|
|
43
|
-
import "./tools/translators/index";
|
|
44
|
-
import "./tools/triggers/index";
|
|
45
|
-
import "./tools/types/index";
|
|
46
|
-
import "./tools/ui/index";
|
|
47
|
-
import "./tools/window/index";
|
|
1
|
+
/// <reference path="./dphelper.d.ts" />
|
|
48
2
|
export default dphelper;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|