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
/
types
/
easy-search-input
/
index.d.ts
13 lines
(9 loc)
•
300 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// types/easy-search-input/index.d.ts
import
*
as
React
from
'react'
;
declare
module
'easy-search-input'
{
export
interface
EasySearchInputProps
{
themeName
?:
'default'
|
'sanimex'
; }
const
EasySearchInput
:
React
.
FC
<
EasySearchInputProps
>;
export
default
EasySearchInput
; }