ukelli-ui
Version:
Base on React's UI lib. Make frontend's dev simpler and faster.
19 lines (18 loc) • 559 B
TypeScript
import { Component } from 'react';
export interface AnimateBallProps {
animating: boolean;
numberRange: number[];
activeNumb: number | string;
}
export default class AnimateBall extends Component<AnimateBallProps> {
numberRangeArr: number[];
eachItemRotate: any;
eachItemHeight: any;
animateName: any;
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
componentDidMount(): void;
genRandomArr(): void;
shuffle: (arrInput: any) => any[];
setKeyCss(ballItem: any): void;
render(): JSX.Element;
}