igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
22 lines (21 loc) • 713 B
TypeScript
import { addAnimationController } from '../../animations/player.js';
import { IgcBaseAlertLikeComponent } from '../common/mixins/alert.js';
/**
* A toast component is used to show a notification
*
* @element igc-toast
*
* @csspart base - The base wrapper of the toast.
*/
export default class IgcToastComponent extends IgcBaseAlertLikeComponent {
static readonly tagName = "igc-toast";
static styles: import("lit").CSSResult[];
protected _animationPlayer: ReturnType<typeof addAnimationController>;
static register(): void;
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-toast': IgcToastComponent;
}
}