UNPKG

@nutui/nutui-react-taro

Version:

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

13 lines (12 loc) 444 B
import { FunctionComponent, HTMLAttributes } from 'react'; import { TaroContentProps } from "../../types"; export declare const defaultContentProps: { visible: boolean; title: string; header: string; footer: string; close: string; footerDirection: string; onClick: () => void; }; export declare const Content: FunctionComponent<Partial<TaroContentProps> & Omit<HTMLAttributes<HTMLDivElement>, 'onClick' | 'title'>>;