shineout
Version:
A components library for React
20 lines (19 loc) • 507 B
TypeScript
import IInput from './input';
import IGroup from './group';
import IPassword from './password';
import INumber from './number';
type RefInput = typeof IInput;
export interface InputComponent extends RefInput {
displayName: string;
Group: typeof IGroup & {
displayName: string;
};
Password: typeof IPassword & {
displayName: string;
};
Number: typeof INumber & {
displayName: string;
};
}
declare const InputComp: InputComponent;
export default InputComp;