svelisy
Version:
svelisy - DaisyUI components built with Svelte 🌼
21 lines (20 loc) • 1.16 kB
TypeScript
import ChatBubble__SvelteComponent_, { type TChatBubbleProps } from './ChatBubble.svelte';
import Avatar__SvelteComponent_, { type TChatAvatarProps } from './components/Avatar.svelte';
import Header__SvelteComponent_, { type TChatHeaderProps } from './components/Header.svelte';
import Footer__SvelteComponent_, { type TChatFooterProps } from './components/Footer.svelte';
import Time__SvelteComponent_, { type TChatTimeProps } from './components/Time.svelte';
import Message__SvelteComponent_, { type TChatMessageProps } from './components/Message.svelte';
export type ChatBubbleProps = TChatBubbleProps;
export type ChatAvatarProps = TChatAvatarProps;
export type ChatHeaderProps = TChatHeaderProps;
export type ChatFooterProps = TChatFooterProps;
export type ChatTimeProps = TChatTimeProps;
export type ChatMessageProps = TChatMessageProps;
declare const _default: typeof ChatBubble__SvelteComponent_ & {
Header: typeof Header__SvelteComponent_;
Time: typeof Time__SvelteComponent_;
Footer: typeof Footer__SvelteComponent_;
Avatar: typeof Avatar__SvelteComponent_;
Message: typeof Message__SvelteComponent_;
};
export default _default;