UNPKG
easy-search-input
Version:
latest (1.0.8)
1.0.8
1.0.7
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Componente de búsqueda fácil para productos en React.
easy-search-input
/
src
/
types
/
easy-search-input.d.ts
12 lines
(9 loc)
•
334 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
declare
module
'easy-search-input'
{
import
{
ComponentType
}
from
'react'
;
interface
EasySearchInputProps
{
theme
?:
string
;
// Agrega otras propiedades que el componente pueda aceptar
}
const
EasySearchInput
:
ComponentType
<
EasySearchInputProps
>;
export
default
EasySearchInput
; }