UNPKG

svelte-table-pagination

Version:

Svelte component to create and manage table and pagination.

24 lines (23 loc) 679 B
/** @typedef {typeof __propDef.props} IconDotsProps */ /** @typedef {typeof __propDef.events} IconDotsEvents */ /** @typedef {typeof __propDef.slots} IconDotsSlots */ export default class IconDots extends SvelteComponentTyped<{ [x: string]: never; }, { [evt: string]: CustomEvent<any>; }, {}> { } export type IconDotsProps = typeof __propDef.props; export type IconDotsEvents = typeof __propDef.events; export type IconDotsSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};