petals-ui
Version:
Front-end UI components foundation
9 lines (6 loc) • 298 B
text/typescript
import { FormControlPrefixAndSuffix, INumericFormControl } from '../../form-control';
interface INumberInputComponent extends INumericFormControl {
readonly prefix: string | FormControlPrefixAndSuffix;
readonly suffix: string | FormControlPrefixAndSuffix;
}
export { INumberInputComponent };