@artmate/chat
Version:
借鉴字节开源react库AntX,通过vue实现的版本
12 lines (11 loc) • 431 B
TypeScript
import { default as Bubble } from '../bubble/index.vue';
import { default as BubbleLoading } from '../bubble/loading.vue';
import { default as BubbleList } from './index.vue';
export type * from './interface';
type BubbleListType = {
Bubble: typeof Bubble;
Loading: typeof BubbleLoading;
} & typeof BubbleList;
declare const _default: BubbleListType;
export default _default;
export { BubbleList, Bubble, BubbleLoading, };