Skip to content

Instantly share code, notes, and snippets.

@vineet-sinha
vineet-sinha / flowbite-datepicker.d.ts
Last active May 13, 2024 02:31
Flowbite Datepicker Typings
// from https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/vanillajs-datepicker/Datepicker.d.ts
// updated with: https://github.com/themesberg/flowbite-datepicker/blob/master/docs/options.md
declare module 'flowbite-datepicker' {
export interface DatepickerOptionsFormat {
toValue: (date: Date, format: object, locale: object) => Date | number;
toDisplay: (date: Date, format: object, locale: object) => string;
}
// export interface DatepickerOptionsShortcutKeysDefinition {
Simplest versions: https://plnkr.co/edit/88Va0DvT7Js5ZHoOHM6z?p=preview & https://plnkr.co/edit/OPZL0NFunYDWfOxD5DEt?p=preview
Good tutorial: https://tests4geeks.com/angular-2-tutorial/
https://plnkr.co/edit/gTsPdnD791VmPBNPWJmv?p=preview