UNPKG

svelte-ux

Version:

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

22 lines (21 loc) 717 B
import { SvelteComponentTyped } from "svelte"; import type { SelectedDate } from '../utils/date'; declare const __propDef: { props: { selected?: SelectedDate | undefined; minDate?: Date | undefined; maxDate?: Date | undefined; }; events: { dateChange: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type MonthListByYearProps = typeof __propDef.props; export type MonthListByYearEvents = typeof __propDef.events; export type MonthListByYearSlots = typeof __propDef.slots; export default class MonthListByYear extends SvelteComponentTyped<MonthListByYearProps, MonthListByYearEvents, MonthListByYearSlots> { } export {};