@cbpds/web-components
Version:
Web components for the CBP Design System.
12 lines (11 loc) • 346 B
TypeScript
export declare class CbpToast {
host: HTMLElement;
color: 'info' | 'danger' | 'success' | 'warning';
duration: 3 | 5 | 10;
open: boolean;
context: "light-inverts" | "light-always" | "dark-inverts" | "dark-always";
sx: any;
watchOpenHandler(newValue: boolean): void;
componentWillLoad(): void;
render(): any;
}