Graduation / ui /node_modules /bits-ui /dist /bits /scroll-area /components /scroll-area-scrollbar-y.svelte.d.ts
DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
982 Bytes
import { SvelteComponent } from "svelte";
import type { ScrollbarProps } from "../types.js";
declare const __propDef: {
props: Omit<ScrollbarProps, "orientation">;
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" | "pointermove" | "pointerup">;
};
};
};
};
export type ScrollAreaScrollbarYProps = typeof __propDef.props;
export type ScrollAreaScrollbarYEvents = typeof __propDef.events;
export type ScrollAreaScrollbarYSlots = typeof __propDef.slots;
export default class ScrollAreaScrollbarY extends SvelteComponent<ScrollAreaScrollbarYProps, ScrollAreaScrollbarYEvents, ScrollAreaScrollbarYSlots> {
}
export {};