UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

15 lines (14 loc) 508 B
import type { ToastContainerProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [ToastContainerProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1994) * ## Props * @prop children * @prop position = "top-right" * @prop class: className * @prop ...restProps */ declare const ToastContainer: import("svelte").Component<ToastContainerProps, {}, "">; type ToastContainer = ReturnType<typeof ToastContainer>; export default ToastContainer;