/**
 * 对象参数
 */
export interface Option {
}
/**
 * 参数
 */
export type Options = string | number | Option;
/**
 * props
 */
export interface Props {
    visible?: boolean;
    message?: string;
}
