flatpickr
Version:
A lightweight, powerful javascript datetime picker
21 lines (20 loc) • 546 B
TypeScript
import { Options } from "./options";
import { Instance, FlatpickrFn } from "./instance";
declare global {
interface HTMLElement {
flatpickr: (config?: Options) => Instance;
_flatpickr?: Instance;
}
interface NodeList {
flatpickr: (config?: Options) => Instance | Instance[];
}
interface HTMLCollection {
flatpickr: (config?: Options) => Instance | Instance[];
}
interface Window {
flatpickr: FlatpickrFn;
}
interface Date {
fp_incr: (n: number) => Date;
}
}