svelte-meilisearch-instantsearch
Version:
Svelte wrapper for Meilisearch InstantSearch
32 lines (31 loc) • 1.18 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
items: import("instantsearch.js/es/connectors/hits-per-page/connectHitsPerPage").HitsPerPageConnectorParamsItem[];
transformItems?: import("instantsearch.js").TransformItems<import("instantsearch.js/es/connectors/hits-per-page/connectHitsPerPage").HitsPerPageRenderStateItem> | undefined;
classes?: Partial<{
/**
* Class names to apply to the root element
*/
root: string;
/**
* Class names to apply to the select element
*/
select: string;
/**
* Class names to apply to the option element
*/
option: string;
}> | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type HitsPerPageProps = typeof __propDef.props;
export type HitsPerPageEvents = typeof __propDef.events;
export type HitsPerPageSlots = typeof __propDef.slots;
export default class HitsPerPage extends SvelteComponentTyped<HitsPerPageProps, HitsPerPageEvents, HitsPerPageSlots> {
}
export {};