svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
22 lines (21 loc) • 721 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { SelectedDate } from '@layerstack/utils';
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 {};