5 lines
222 B
TypeScript
5 lines
222 B
TypeScript
import type { CalendarCellProps } from "../types.js";
|
|
declare const CalendarCell: import("svelte").Component<CalendarCellProps, {}, "ref">;
|
|
type CalendarCell = ReturnType<typeof CalendarCell>;
|
|
export default CalendarCell;
|