magic-canvas-yonava 1.0.6 → 1.0.7

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 CHANGED
@@ -1,16 +1,15 @@
1
- import MagicCanvas from "./MagicCanvas.vue";
2
- import { App } from "vue";
3
- export * from "./types.js";
4
- export * from "./useMagicCanvas.js";
5
- export * from "./coordinates/index.js";
6
- export { getDevicePixelRatio } from "./camera/utils.js";
1
+ import { default as MagicCanvas } from './MagicCanvas.vue';
2
+ import { App } from 'vue';
3
+ export * from './types.js';
4
+ export * from './useMagicCanvas.js';
5
+ export * from './coordinates/index.js';
6
+ export { getDevicePixelRatio } from './camera/utils.js';
7
7
  export { MagicCanvas };
8
8
  declare module "vue" {
9
9
  interface GlobalComponents {
10
10
  MagicCanvas: typeof MagicCanvas;
11
11
  }
12
12
  }
13
- declare const _default: {
13
+ export declare const MagicCanvasPlugin: {
14
14
  install(app: App): void;
15
15
  };
16
- export default _default;