UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

13 lines (12 loc) 475 B
import type { JSX } from '../../stencil-public-runtime'; import type { Toast, ToasterAPI, ToasterStates } from '../../schema'; export declare class KolToastContainer implements ToasterAPI { state: ToasterStates; private readonly translateToastCloseAll; private knownRenderFunctions; enqueue(toast: Toast): Promise<() => void>; private handleClose; closeAll(immediate?: boolean): Promise<void>; private handleToastRef; render(): JSX.Element; }