UNPKG

cloud-component

Version:
16 lines (15 loc) 292 B
/// <reference types="react" /> declare type Props = { /** * 提示文字 * @default 数据加载中 */ tip?: string; }; declare const Loading: { (props: Props): JSX.Element; defaultProps: { tip: string; }; }; export default Loading;