quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
16 lines (15 loc) • 418 B
TypeScript
declare class Toast {
private root;
private messages;
constructor();
private showMsg;
private closeMsg;
private autoCloseMsg;
private renderToast;
success(msg: string, isFill?: boolean): void;
warning(msg: string, isFill?: boolean): void;
error(msg: string, isFill?: boolean): void;
info(msg: string, isFill?: boolean): void;
}
export declare const toast: Toast;
export {};