pope-test-callkit2
Version:
An Open-source Voice & Video Calling UI Component Based on Tencent Cloud Service.
17 lines (16 loc) • 551 B
TypeScript
export declare type ToastType = 'info' | 'waring' | 'error';
export declare type TToastOptions = {
type?: ToastType;
duration?: number;
message: string;
showClose?: boolean;
onClose?: () => void;
};
export declare type CreateToast = (options: TToastOptions) => any;
export declare type TToast = {
info?: (options: TToastOptions) => void;
success?: (options: TToastOptions) => void;
waring?: (options: TToastOptions) => void;
error?: (options: TToastOptions) => void;
show?: (options: TToastOptions) => void;
};