UNPKG

svelte-search-engine

Version:

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

9 lines (8 loc) 603 B
export type { ElementObject, ElementMap, CseElement, ComponentAttributes } from './types/google'; export type { Result, Promotion } from './types/search'; export { default as Engine } from './components/Engine.svelte'; export { default as Search } from './components/Search.svelte'; export { default as SearchBox } from './components/SearchBox.svelte'; export { default as SearchResults } from './components/SearchResults.svelte'; export { init as initStore, ready as readyStore, rendered as renderedStore, starting as startingStore } from './stores'; export { searchElementApi } from './internal/api';