UNPKG
@reactjsonforms/antd-renderers
Version:
latest (4.0.0-alpha.3)
4.0.0-alpha.3
4.0.0-alpha.1
Ant Design Renderer Set for JSON Forms
jsonforms.io
eclipsesource/jsonforms
@reactjsonforms/antd-renderers
/
lib
/
controls
/
InputControl.d.ts
9 lines
(8 loc)
•
301 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
ControlProps
,
ControlState
}
from
'@reactjsonforms/core'
;
import
{
Control
}
from
'@reactjsonforms/react'
;
export
interface
WithInput
{
input
:
any
; }
export
declare
abstract
class
InputControl
extends
Control
<
ControlProps
&
WithInput
,
ControlState
> {
render
():
JSX
.
Element
; }