fui-fancyui
Version:
FancyUI Libary
12 lines (11 loc) • 524 B
TypeScript
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'>;