UNPKG

ukelli-ui

Version:

Base on React's UI lib. Make frontend's dev simpler and faster.

20 lines (19 loc) 520 B
/** * 目前暂时废弃的组件 */ import { PureComponent } from 'react'; interface CountdownBgProps { id: any; percent: any; text: any; } export default class CountdownBg extends PureComponent<CountdownBgProps> { animationTime: any; canvasInfo: any; componentDidMount(): void; circle(cx: any, cy: any, r: any): void; sector(cx: any, cy: any, r: any, startAngle: any, endAngle: any, anti?: boolean): void; draw(nextPercent?: number): void; render(): JSX.Element; } export {};