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