jwt-ui 1.11.26 → 1.11.27

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jwt-ui",
3
3
  "private": false,
4
- "version": "1.11.26",
4
+ "version": "1.11.27",
5
5
  "author": "WGL",
6
6
  "homepage": "https://www.npmjs.com/package/jwt-ui",
7
7
  "type": "module",
@@ -10,15 +10,18 @@
10
10
  "ui"
11
11
  ],
12
12
  "files": [
13
- "lib"
13
+ "lib",
14
+ "types"
14
15
  ],
16
+ "types": "./types/index.d.ts",
15
17
  "main": "./lib/jwt-ui.umd.js",
16
18
  "module": "./lib/jwt-ui.es.js",
17
19
  "exports": {
18
20
  "./lib/jwt-ui.css": "./lib/style.css",
19
21
  ".": {
20
22
  "import": "./lib/jwt-ui.es.js",
21
- "require": "./lib/jwt-ui.umd.js"
23
+ "require": "./lib/jwt-ui.umd.js",
24
+ "types": "./types/index.d.ts"
22
25
  }
23
26
  },
24
27
  "scripts": {
@@ -0,0 +1,36 @@
1
+ /*
2
+ * @Author: WGL
3
+ * @Date: 2023-11-23 22:10:18
4
+ * @LastEditors: WGL
5
+ * @LastEditTime: 2023-12-06 21:45:58
6
+ * @Description:
7
+ */
8
+ declare module "*.png";
9
+ declare module "*.gif";
10
+ declare module "*.jpg";
11
+ declare module "*.jpeg";
12
+ declare module "*.svg";
13
+ declare module "*.css";
14
+ declare module "*.less";
15
+ declare module "*.scss";
16
+ declare module "*.sass";
17
+ declare module "*.styl";
18
+ declare module "qs";
19
+ declare module "dayjs";
20
+ // declare var F: any
21
+ // declare var LS: any
22
+ // declare var LS: any
23
+ declare module "*.vue" {
24
+ import { DefineComponent } from "vue";
25
+ const component: DefineComponent<{}, {}, any>;
26
+ export default component;
27
+ }
28
+
29
+ declare let F: any;
30
+ declare let SS: any;
31
+ declare let LS: any;
32
+ interface Window {
33
+ F: any;
34
+ SS: any;
35
+ LS: any;
36
+ }