UNPKG

svelte-meilisearch-instantsearch

Version:

Svelte wrapper for Meilisearch InstantSearch

32 lines (31 loc) 1.09 kB
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { items: import("instantsearch.js/es/connectors/sort-by/connectSortBy").SortByItem[]; transformItems?: import("instantsearch.js").TransformItems<import("instantsearch.js/es/connectors/sort-by/connectSortBy").SortByItem> | 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 SortByProps = typeof __propDef.props; export type SortByEvents = typeof __propDef.events; export type SortBySlots = typeof __propDef.slots; export default class SortBy extends SvelteComponentTyped<SortByProps, SortByEvents, SortBySlots> { } export {};