Graduation
/
ui
/node_modules
/bits-ui
/dist
/bits
/range-calendar
/components
/range-calendar-grid.svelte.d.ts
import { SvelteComponent } from "svelte"; | |
import type { GridProps } from "../types.js"; | |
declare const __propDef: { | |
props: GridProps; | |
events: { | |
[evt: string]: CustomEvent<any>; | |
}; | |
slots: { | |
default: { | |
builder: { | |
tabindex: number; | |
role: string; | |
'aria-readonly': "true" | undefined; | |
'aria-disabled': "true" | undefined; | |
'data-readonly': string | undefined; | |
'data-disabled': string | undefined; | |
} & { | |
[x: `data-melt-${string}`]: ""; | |
} & { | |
action: import("svelte/action").Action<any, any, Record<never, any>>; | |
}; | |
}; | |
}; | |
}; | |
export type RangeCalendarGridProps = typeof __propDef.props; | |
export type RangeCalendarGridEvents = typeof __propDef.events; | |
export type RangeCalendarGridSlots = typeof __propDef.slots; | |
export default class RangeCalendarGrid extends SvelteComponent<RangeCalendarGridProps, RangeCalendarGridEvents, RangeCalendarGridSlots> { | |
} | |
export {}; | |