UNPKG

svelte-meilisearch-instantsearch

Version:

Svelte wrapper for Meilisearch InstantSearch

20 lines (19 loc) 522 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { indexName: string; indexId?: string | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type IndexProps = typeof __propDef.props; export type IndexEvents = typeof __propDef.events; export type IndexSlots = typeof __propDef.slots; export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> { } export {};