@pinegrow/iles-module 3.0.0-beta.91 → 3.0.0-beta.93
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/dist/index.d.ts +5 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { IlesModule } from 'iles';
|
|
2
|
-
|
|
2
|
+
import AutoImportAPIs from 'unplugin-auto-import/types';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* An iles module that...
|
|
6
6
|
*/
|
|
7
|
-
declare function export_default(moduleOptions:
|
|
7
|
+
declare function export_default(moduleOptions: {
|
|
8
|
+
liveDesigner: any;
|
|
9
|
+
autoImportAPIs: ReturnType<typeof AutoImportAPIs>;
|
|
10
|
+
}): IlesModule;
|
|
8
11
|
|
|
9
12
|
export { export_default as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinegrow/iles-module",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.93",
|
|
4
4
|
"description": "Pinegrow Iles Module",
|
|
5
5
|
"author": "Pinegrow (http://pinegrow.com/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"increment-beta-version": "npm version prerelease --preid=beta"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@pinegrow/vite-plugin": "3.0.0-beta.
|
|
34
|
+
"@pinegrow/vite-plugin": "3.0.0-beta.93",
|
|
35
35
|
"node-html-parser": "^6.1.5",
|
|
36
36
|
"unplugin-auto-import": "^0.15.2"
|
|
37
37
|
},
|