ukelli-ui
Version:
Base on React's UI lib. Make frontend's dev simpler and faster.
13 lines (12 loc) • 408 B
TypeScript
import { UkeComponent } from '../utils/uke-component';
export interface FormControlBasicProps {
value?: any;
defaultValue?: any;
}
export default class FormControlBasic<P extends FormControlBasicProps, S = {}, SS = any> extends UkeComponent<P, S, SS> {
isControl: boolean;
value: any;
stateValueMark: string;
constructor(props: any);
getValue: (stateValueMark?: string) => any;
}