UNPKG

svelte-search-engine

Version:

A wrapper for Google's Programmable Search Engine, providing a Svelte-friendly interface.

23 lines (22 loc) 762 B
import { SvelteComponent } from "svelte"; import type { WithGname } from '../internal/types'; import type { UIComponents } from '../types/components'; import type { ComponentAttributes } from '../types/google'; declare const __propDef: { props: { attributes: ComponentAttributes & WithGname; components?: UIComponents | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type SearchProps = typeof __propDef.props; export type SearchEvents = typeof __propDef.events; export type SearchSlots = typeof __propDef.slots; export default class Search extends SvelteComponent<SearchProps, SearchEvents, SearchSlots> { } export {};