shineout
Version:
Shein 前端组件库
13 lines (12 loc) • 388 B
TypeScript
import * as React from 'react';
import { FieldProps } from './Props';
declare class Field<Value> extends React.Component<FieldProps<Value>> {
static defaultProps: {
cache: boolean;
};
constructor(props: FieldProps<Value>);
shouldComponentUpdate(nextProps: FieldProps<Value>): boolean;
handleChange(value: any): void;
render(): any;
}
export default Field;