svelte-search-engine
Version:
A wrapper for Google's Programmable Search Engine, providing a Svelte-friendly interface.
24 lines (23 loc) • 835 B
TypeScript
import { SvelteComponent } from "svelte";
import type { WithGname } from '../internal/types';
import type { ComponentAttributes } from '../types/google';
import type { UIComponents } from '../types/components';
declare const __propDef: {
props: {
attributes: ComponentAttributes & WithGname;
components?: UIComponents | undefined;
only?: boolean;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
exports?: {} | undefined;
bindings?: string | undefined;
};
export type SearchResultsProps = typeof __propDef.props;
export type SearchResultsEvents = typeof __propDef.events;
export type SearchResultsSlots = typeof __propDef.slots;
export default class SearchResults extends SvelteComponent<SearchResultsProps, SearchResultsEvents, SearchResultsSlots> {
}
export {};