datepicker-nepali-reactjs
Version:
React Nepali Date Picker
9 lines (8 loc) • 330 B
TypeScript
import { FunctionComponent } from "react";
import { localeType } from "./types/types";
export declare const SET_CONFIG: string;
export declare const ConfigProvider: FunctionComponent;
export declare const useConfig: () => {
getConfig: <T>(key: string) => T;
setConfig: (key: string, value: localeType) => void;
};