UNPKG
input-with-tag
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.4
0.0.3
0.0.2
0.0.1
Based on AntD Input, enhanced it with Tag,support for Form embedded.
input-with-tag
/
es
/
InputWithTag
/
index.d.ts
9 lines
(8 loc)
•
234 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/// <reference types="react" />
import
'./index.css'
;
interface
IInputWithTagProps
{
value
?:
any
[];
onChange
?:
(
v
:
any
[]
) =>
void
; }
declare
const
_default
:
(
props
:
IInputWithTagProps
) =>
JSX
.
Element
;
export
default
_default;