react-nepali-datepicker-bs
Version:
Nepali Datepicker (Bikram Sambat) as a ReactJS component
7 lines (6 loc) • 338 B
TypeScript
import { ConfigState, ConfigValue } from "./ConfigTypes";
declare const useConfig: () => {
setConfig: (key: keyof ConfigState, value: ConfigValue) => void;
getConfig: <T extends "formatOptions" | "currentLocale" | "minYear" | "maxYear" | "theme" | "weekDayLabelSize">(key: T) => ConfigState[T];
};
export default useConfig;