Graduation
/
ui
/node_modules
/bits-ui
/dist
/bits
/scroll-area
/components
/scroll-area-thumb.svelte.d.ts
import { SvelteComponent } from "svelte"; | |
import type { ThumbProps } from "../types.js"; | |
declare const __propDef: { | |
props: ThumbProps; | |
events: { | |
[evt: string]: CustomEvent<any>; | |
}; | |
slots: { | |
default: { | |
builder: { | |
style: string; | |
'data-state': string; | |
} & { | |
[x: `data-melt-${string}`]: ""; | |
} & { | |
action: (node: HTMLElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"pointerdown" | "pointerup">; | |
}; | |
}; | |
}; | |
}; | |
export type ScrollAreaThumbProps = typeof __propDef.props; | |
export type ScrollAreaThumbEvents = typeof __propDef.events; | |
export type ScrollAreaThumbSlots = typeof __propDef.slots; | |
export default class ScrollAreaThumb extends SvelteComponent<ScrollAreaThumbProps, ScrollAreaThumbEvents, ScrollAreaThumbSlots> { | |
} | |
export {}; | |