DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
740 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 | undefined;
"data-disabled": string | undefined;
role: string;
};
};
};
};
export type DatePickerCellProps = typeof __propDef.props;
export type DatePickerCellEvents = typeof __propDef.events;
export type DatePickerCellSlots = typeof __propDef.slots;
export default class DatePickerCell extends SvelteComponent<DatePickerCellProps, DatePickerCellEvents, DatePickerCellSlots> {
}
export {};