/** * @license * Copyright 厦门乾元盛世科技有限公司 All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file. */ import { OnChanges, SimpleChanges } from '@angular/core'; /** * Toast - 弹出式提示 */ export declare class WeUIToast implements OnChanges { /** * @i18n */ defaults: any; /** * 内容 */ content: string; /** * 状态,取值:loading, success */ status: string; /** * 状态:正在加载 */ loading: boolean; /** * 状态:操作成功 */ success: boolean; /** * 样式控制 */ readonly hideCls: boolean; constructor(); ngOnChanges(changes: SimpleChanges): void; /** * 显示 */ show(): void; /** * 隐藏 */ hide(): void; }