DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
696 Bytes
import { SvelteComponent } from "svelte";
import type { CellProps } from "../types.js";
declare const __propDef: {
props: CellProps;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
attrs: {
"aria-disabled": boolean;
role: string;
};
};
};
};
export type RangeCalendarCellProps = typeof __propDef.props;
export type RangeCalendarCellEvents = typeof __propDef.events;
export type RangeCalendarCellSlots = typeof __propDef.slots;
export default class RangeCalendarCell extends SvelteComponent<RangeCalendarCellProps, RangeCalendarCellEvents, RangeCalendarCellSlots> {
}
export {};