svelte-table-pagination
Version:
Svelte component to create and manage table and pagination.
17 lines (16 loc) • 469 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
searchKeyWord: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type SearchProps = typeof __propDef.props;
export type SearchEvents = typeof __propDef.events;
export type SearchSlots = typeof __propDef.slots;
export default class Search extends SvelteComponentTyped<SearchProps, SearchEvents, SearchSlots> {
}
export {};