svelte-table-pagination
Version:
Svelte component to create and manage table and pagination.
24 lines (23 loc) • 777 B
TypeScript
/** @typedef {typeof __propDef.props} IconCircleChevronsDownProps */
/** @typedef {typeof __propDef.events} IconCircleChevronsDownEvents */
/** @typedef {typeof __propDef.slots} IconCircleChevronsDownSlots */
export default class IconCircleChevronsDown extends SvelteComponentTyped<{
[x: string]: never;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type IconCircleChevronsDownProps = typeof __propDef.props;
export type IconCircleChevronsDownEvents = typeof __propDef.events;
export type IconCircleChevronsDownSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: never;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};