svelte-search-engine
Version:
A wrapper for Google's Programmable Search Engine, providing a Svelte-friendly interface.
10 lines (9 loc) • 362 B
TypeScript
import type { WithGname } from '../internal/types';
import type { ComponentAttributes } from '../types/google';
type $$ComponentProps = {
attributes: ComponentAttributes & WithGname;
only?: boolean;
};
declare const SearchBox: import("svelte").Component<$$ComponentProps, {}, "">;
type SearchBox = ReturnType<typeof SearchBox>;
export default SearchBox;