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