ai-chat-bot-interface 1.7.12 → 1.7.13

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 +11 -4
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1,4 +1,11 @@
1
- import { App, Plugin } from 'vue';
2
- export const ChatUi: any;
3
- declare const plugin: Plugin;
4
- export default plugin;
1
+ import { App, Plugin, DefineComponent } from 'vue';
2
+
3
+ declare const ChatUi: DefineComponent<{}, {}, any>;
4
+
5
+ /** 插件类型声明 */
6
+ declare const AiChatBotInterface: Plugin & {
7
+ install(app: App): void;
8
+ };
9
+
10
+ export { ChatUi };
11
+ export default AiChatBotInterface;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-chat-bot-interface",
3
- "version": "1.7.12",
3
+ "version": "1.7.13",
4
4
  "main": "./dist/index.umd.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "types": "./dist/index.d.ts",