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.
18 lines (17 loc) • 615 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import { type DateRange } from '@layerstack/utils/dateRange';
declare const __propDef: {
props: {
value: DateRange | null | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type DateRangeDisplayProps = typeof __propDef.props;
export type DateRangeDisplayEvents = typeof __propDef.events;
export type DateRangeDisplaySlots = typeof __propDef.slots;
export default class DateRangeDisplay extends SvelteComponentTyped<DateRangeDisplayProps, DateRangeDisplayEvents, DateRangeDisplaySlots> {
}
export {};