@vuecast/astro-module 1.0.1 → 1.0.2
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/dist/index.d.mts +1 -4
- package/dist/index.d.ts +1 -4
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { AstroIntegration } from 'astro';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
declare function vuecastAstroIntegration(options: VuecastAstroPluginOptions): AstroIntegration;
|
|
3
|
+
declare function vuecastAstroIntegration(): AstroIntegration;
|
|
7
4
|
|
|
8
5
|
export { vuecastAstroIntegration as VuecastAstro, vuecastAstroIntegration as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { AstroIntegration } from 'astro';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
declare function vuecastAstroIntegration(options: VuecastAstroPluginOptions): AstroIntegration;
|
|
3
|
+
declare function vuecastAstroIntegration(): AstroIntegration;
|
|
7
4
|
|
|
8
5
|
export { vuecastAstroIntegration as VuecastAstro, vuecastAstroIntegration as default };
|
package/dist/index.mjs
CHANGED