svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
23 lines (22 loc) • 711 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { SelectedDate } from '../utils/date';
import { PeriodType } from '../utils/date';
declare const __propDef: {
props: {
selected?: SelectedDate;
periodType?: PeriodType;
activeDate?: 'from' | 'to';
};
events: {
dateChange: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type DateSelectProps = typeof __propDef.props;
export type DateSelectEvents = typeof __propDef.events;
export type DateSelectSlots = typeof __propDef.slots;
export default class DateSelect extends SvelteComponentTyped<DateSelectProps, DateSelectEvents, DateSelectSlots> {
}
export {};