UNPKG

@nutui/nutui-react

Version:

京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序

11 lines (10 loc) 337 B
import { WebToastProps } from "../../types"; type ToastNativeProps = Partial<WebToastProps>; declare function show(option: ToastNativeProps | string): void; declare function config(config: ToastNativeProps): void; declare const _default: { show: typeof show; config: typeof config; clear(): void; }; export default _default;