UNPKG

svelte-ux

Version:

- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`

23 lines (22 loc) 705 B
import { SvelteComponentTyped } from "svelte"; import type { SelectedDate } from '../utils/date'; declare const __propDef: { props: { year?: number | undefined; selected?: SelectedDate | undefined; format?: string | undefined; disabledMonths?: any; }; events: { dateChange: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type MonthListProps = typeof __propDef.props; export type MonthListEvents = typeof __propDef.events; export type MonthListSlots = typeof __propDef.slots; export default class MonthList extends SvelteComponentTyped<MonthListProps, MonthListEvents, MonthListSlots> { } export {};