jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
17 lines (16 loc) • 548 B
TypeScript
import React from 'react';
import type { InputGroupProps } from '../types';
interface InputGroupState {
isFocused: boolean;
}
export declare class InputGroup extends React.Component<InputGroupProps, InputGroupState> {
constructor(props: InputGroupProps);
handleFocus(): void;
handleBlur(): void;
renderControl(control: any, length: number, index: number, otherProps?: any): JSX.Element | null;
validate(): string[] | "";
render(): JSX.Element;
}
export default class InputGroupRenderer extends InputGroup {
}
export {};