UNPKG
@metadev/daga-react
Version:
latest (4.2.5)
4.2.5
4.2.4
4.2.3
4.2.2
4.2.1
4.2.0
4.1.0
1.0.1
1.0.0
0.0.4
0.0.3
0.0.2
0.0.1

metadev.pro/products/daga/
@metadev/daga-react
/
lib
/
property-editor
/
text-map
/
DagaTextMapComponent.d.ts
12 lines
(11 loc)
•
293 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
interface
DagaTextMapComponentProps
{
disabled
:
boolean
;
value
: { [
name
:
string
]:
string
; };
onChange
:
(
value
: { [name:
string
]:
string
; }
) =>
void
; }
declare
const
DagaTextMapComponent
:
React
.
FC
<
DagaTextMapComponentProps
>;
export
{
DagaTextMapComponent
};