UNPKG

fui-fancyui

Version:
12 lines (11 loc) 524 B
import { TNumberInputWithNativeAttrs } from '../NumberInput/TNumberInput.model'; import { TComponentSizes } from '../../../types/TComponentSizes'; import { TLayer } from '../../../types/TLayer'; import { TUiColorsMain } from '../../../types/TUiColorsMain'; export type TYearInput = { year?: number; sizeC?: TComponentSizes; themeType?: TUiColorsMain; layer?: TLayer; }; export type TYearInputWithNativeAttrs = TYearInput & Omit<TNumberInputWithNativeAttrs, 'step' | 'autoWidth' | 'decimalPlaces' | 'value'>;