UNPKG

@sveltestrap/sveltestrap

Version:

Bootstrap components for Svelte

13 lines (8 loc) 364 B
import { SvelteComponent } from 'svelte'; import { HTMLAttributes } from 'svelte/elements'; export interface ToastBodyProps extends HTMLAttributes<HTMLDivElement> {} export interface ToastBodyEvents {} export interface ToastBodySlots { default: {}; } export default class ToastBody extends SvelteComponent<ToastBodyProps, ToastBodyEvents, ToastBodySlots> {}