UNPKG
@ovine-eason/core
Version:
latest (0.3.2)
0.3.2
0.3.1
0.3.0
0.2.9
0.2.8
0.2.7
0.2.6
0.1.9
Build flexible admin system with json.
CareyToboo/ovine
@ovine-eason/core
/
lib
/
components
/
amis
/
lib_crud
/
index.d.ts
11 lines
(10 loc)
•
318 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * 自定义 crud 组件 * 固定 table height 存在BUG,需要其他方式支持 */
import
React
from
'react'
;
import
{
LibCssProps
}
from
"../lib_css"
;
export
declare
type
LibCrudProps
=
LibCssProps
;
export
declare
class
LibCrud
extends
React.Component
<
LibCrudProps
> {
render
():
JSX
.
Element
; }