@pinegrow/astro-module 3.0.0-beta.92 → 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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -2
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1,9 +1,10 @@
1
1
  import { AstroIntegration } from 'astro';
2
+ import AutoImportComponents from 'unplugin-auto-import/types';
2
3
 
3
4
  declare function createIntegration(moduleOptions: {
4
5
  liveDesigner: any;
5
- autoImportComponents: any;
6
- autoImportAPIs: any;
6
+ autoImportComponents: ReturnType<typeof AutoImportComponents>;
7
+ autoImportAPIs: ReturnType<typeof AutoImportComponents>;
7
8
  }): AstroIntegration;
8
9
 
9
10
  export { createIntegration as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinegrow/astro-module",
3
- "version": "3.0.0-beta.92",
3
+ "version": "3.0.0-beta.93",
4
4
  "description": "Pinegrow Astro 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.92",
34
+ "@pinegrow/vite-plugin": "3.0.0-beta.93",
35
35
  "unplugin-vue-components": "^0.24.1",
36
36
  "unplugin-auto-import": "^0.15.2"
37
37
  },