loners-form
Version:
为工作而生,基于 antd 而生的可配置化表单
12 lines (11 loc) • 363 B
TypeScript
import React from 'react';
import type { InputProps } from 'antd/lib/input/Input';
import type { ShowQA } from '../interface';
import '../index.less';
export interface InputGoProps extends InputProps {
fixedWidth?: boolean;
/** 是否显示 QA, 默认 false */
showQA?: ShowQA;
}
declare const InputGo: React.FC<InputGoProps>;
export default InputGo;