shineout
Version:
Shein 前端组件库
15 lines (14 loc) • 467 B
TypeScript
import React from 'react';
import { PureComponent } from '../component';
import { InputTitleProps } from './Props';
interface InputTitleState {
animation: boolean;
}
declare class InputTitle extends PureComponent<InputTitleProps, InputTitleState> {
constructor(props: InputTitleProps);
componentDidUpdate(prevProps: InputTitleProps): void;
startAnimation(): void;
stopAnimation(): void;
render(): React.ReactNode;
}
export default InputTitle;