UNPKG
vobile-form-render-mobile
Version:
beta (0.0.1)
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
通过 JSON Schema 生成标准 Form,常用于自定义搭建配置界面生成
xrender.fun/form-render-mobile
alibaba/form-render
vobile-form-render-mobile
/
lib
/
widgets
/
Html
/
index.d.ts
9 lines
(8 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
'react'
;
interface
IProps
{
value
:
any
;
options
:
any
[];
schema
:
any
; }
declare
const
_default
:
(
props
:
IProps
&
Record
<
string
,
any
>
) =>
React
.
JSX
.
Element
|
"-"
;
export
default
_default;