dphelper 0.5.7 → 0.5.9
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/HISTORY.md +7 -2
- package/dphelper-0.5.9.tgz +0 -0
- package/index.d.ts +27 -0
- package/index.js +1 -1
- package/package.json +4 -3
- package/{default.d.ts → typings/dphelper.d.ts} +0 -21
- package/dphelper-0.5.7.tgz +0 -0
package/HISTORY.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
## v0.5.9 / 2024-02-17
|
|
4
|
+
|
|
5
|
+
- NPM update [Dario Passariello](https://github.com/passariello) ()
|
|
6
|
+
- Fix some bugs [Dario Passariello](https://github.com/passariello) ()
|
|
7
|
+
|
|
8
|
+
## Previous
|
|
9
|
+
|
|
3
10
|
## v0.5.6 / 2024-02-12
|
|
4
11
|
|
|
5
12
|
- NPM update [Dario Passariello](https://github.com/passariello) ()
|
|
@@ -7,8 +14,6 @@
|
|
|
7
14
|
- Mode index to app folder [Dario Passariello](https://github.com/passariello) ()
|
|
8
15
|
- Fix some bugs [Dario Passariello](https://github.com/passariello) ()
|
|
9
16
|
|
|
10
|
-
## Previous
|
|
11
|
-
|
|
12
17
|
## v0.5.4 / 2024-02-10
|
|
13
18
|
|
|
14
19
|
- NPM update [Dario Passariello](https://github.com/passariello) ()
|
|
Binary file
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
+
License: MIT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/// <reference path="./typings/dphelper.d.ts" />
|
|
7
|
+
/// <reference path="./typings/jquery.d.ts" />
|
|
8
|
+
|
|
9
|
+
declare namespace dphelper {
|
|
10
|
+
|
|
11
|
+
export interface Window {
|
|
12
|
+
dphelper: any
|
|
13
|
+
}
|
|
14
|
+
export interface Window {
|
|
15
|
+
state: any
|
|
16
|
+
}
|
|
17
|
+
export interface Window {
|
|
18
|
+
store: any
|
|
19
|
+
}
|
|
20
|
+
export interface Window {
|
|
21
|
+
cache: any
|
|
22
|
+
}
|
|
23
|
+
export interface Window {
|
|
24
|
+
api: any
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
}
|