svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
22 lines (21 loc) • 610 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
items: any[];
perPage?: number;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
visibleItems: any[];
};
};
};
export type InfiniteScrollProps = typeof __propDef.props;
export type InfiniteScrollEvents = typeof __propDef.events;
export type InfiniteScrollSlots = typeof __propDef.slots;
export default class InfiniteScroll extends SvelteComponentTyped<InfiniteScrollProps, InfiniteScrollEvents, InfiniteScrollSlots> {
}
export {};