dphelper 1.8.131 → 1.8.133
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/README.md +1 -1
- package/docs/index.md +1 -1
- package/index.d.ts +7 -7
- package/index.js +1 -1
- package/package.json +4 -1
- package/types/cache.d.ts +0 -27
- package/types/dphelper.d.ts +0 -442
- package/types/idb.d.ts +0 -21
- package/types/jquery.d.ts +0 -20
- package/types/observer.d.ts +0 -47
- package/types/state.d.ts +0 -71
- package/types/store.d.ts +0 -91
package/README.md
CHANGED
|
@@ -104,7 +104,7 @@ require("dphelper");
|
|
|
104
104
|
Note: You don't need to use npm install in this case, or you will get an error.
|
|
105
105
|
|
|
106
106
|
```html
|
|
107
|
-
<script src="https://cdn.jsdelivr.net/npm/dphelper
|
|
107
|
+
<script src="https://cdn.jsdelivr.net/npm/dphelper"></script>
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
## The Best Way To Use State 💥
|
package/docs/index.md
CHANGED
|
@@ -104,7 +104,7 @@ require("dphelper");
|
|
|
104
104
|
Note: You don't need to use npm install in this case, or you will get an error.
|
|
105
105
|
|
|
106
106
|
```html
|
|
107
|
-
<script src="https://cdn.jsdelivr.net/npm/dphelper
|
|
107
|
+
<script src="https://cdn.jsdelivr.net/npm/dphelper"></script>
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
## The Best Way To Use State 💥
|
package/index.d.ts
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
https://dario.passariello.ca
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
/// <reference path="
|
|
9
|
-
/// <reference path="
|
|
8
|
+
/// <reference path="../dphelper.types/types/dphelper.d.ts" />
|
|
9
|
+
/// <reference path="../dphelper.types/types/jquery.d.ts" />
|
|
10
10
|
|
|
11
|
-
/// <reference path="
|
|
12
|
-
/// <reference path="
|
|
13
|
-
/// <reference path="
|
|
14
|
-
/// <reference path="
|
|
15
|
-
/// <reference path="
|
|
11
|
+
/// <reference path="../dphelper.types/types/observer.d.ts" />
|
|
12
|
+
/// <reference path="../dphelper.types/types/state.d.ts" />
|
|
13
|
+
/// <reference path="../dphelper.types/types/store.d.ts" />
|
|
14
|
+
/// <reference path="../dphelper.types/types/cache.d.ts" />
|
|
15
|
+
/// <reference path="../dphelper.types/types/idb.d.ts" />
|