UNPKG

@dfinity/gix-components

Version:
9 lines (8 loc) 236 B
import { type Component } from "svelte"; import type { ToastMsg } from "../types/toast"; interface Props { msg: ToastMsg; } declare const Toast: Component<Props, {}, "">; type Toast = ReturnType<typeof Toast>; export default Toast;