UNPKG

@selenite/commons

Version:

This typescript package provides a set of frequently used utilities, types and svelte actions for building projects with Typescript and Svelte.

8 lines (7 loc) 274 B
import type { HTMLLabelAttributes } from 'svelte/elements'; interface Props extends HTMLLabelAttributes { query?: string; } declare const SearchBar: import("svelte").Component<Props, {}, "query">; type SearchBar = ReturnType<typeof SearchBar>; export default SearchBar;