svelte-meilisearch-instantsearch
Version:
Svelte wrapper for Meilisearch InstantSearch
39 lines (38 loc) • 1.27 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
includedAttributes?: string[] | undefined;
excludedAttributes?: string[] | undefined;
transformItems?: import("instantsearch.js").TransformItems<string> | undefined;
classes?: Partial<{
/**
* Class names to apply to the root element
*/
root: string;
/**
* Class names to apply to the button
*/
button: string;
/**
* Class names to apply to the button when it's disabled
*/
disabledButton: string;
}> | undefined;
translations?: Partial<{
/**
* Label of the button
*/
resetButtonText: string;
}> | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ClearRefinementsProps = typeof __propDef.props;
export type ClearRefinementsEvents = typeof __propDef.events;
export type ClearRefinementsSlots = typeof __propDef.slots;
export default class ClearRefinements extends SvelteComponentTyped<ClearRefinementsProps, ClearRefinementsEvents, ClearRefinementsSlots> {
}
export {};