simple-calendar-widget
Version:
A super simple calendar widget written in TypeScript and SCSS
10 lines (9 loc) • 388 B
TypeScript
declare type CalendarWidgetStringOrArrayOfStrings = Record<string, string | string[]>;
interface CalendarWidgetOptions {
startYear: number;
startMonth: number;
container: string;
translations: CalendarWidgetStringOrArrayOfStrings;
}
export declare const renderCalendarWidget: ({ startYear, startMonth, container, translations }: CalendarWidgetOptions) => void;
export {};