@rnwonder/solid-date-picker
Version:
A responsive, highly-customizable datepicker component for SolidJS.
7 lines (6 loc) • 395 B
TypeScript
import { YearSelectorProps } from "./YearSelector";
export interface YearSelectorExportProps extends Omit<YearSelectorProps, "type" | "setShowSelectorTwo" | "setSelectorTwoProps" | "showSelectorTwo" | "yearSelectorCount"> {
yearSelectorCount?: number;
}
declare const YearSelectorExport: (props: YearSelectorExportProps) => import("solid-js").JSX.Element;
export default YearSelectorExport;