UNPKG

@quanxi/ui

Version:

全悉组件库

21 lines (20 loc) 510 B
/// <reference types="node" /> import React, { CSSProperties } from "react"; import "./style.scss"; interface loadinParams { target?: string; text?: string; background?: string; icon?: string; duration?: number; style?: CSSProperties; } declare const Loading: { EL: string; childrenRef: React.RefObject<unknown>; showTimer: NodeJS.Timeout | null; closeTimer: NodeJS.Timeout | null; show: (p?: loadinParams) => void; close: () => void; }; export default Loading;