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