UNPKG
nusp-arco-design
Version:
latest (2.66.0-beta.2)
2.66.0-beta.2
Arco Design React UI Library.
arco.design
zhanghui-space/arco-design
nusp-arco-design
/
es
/
Form
/
hooks
/
useContext.d.ts
11 lines
(10 loc)
•
296 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
FormInstance
}
from
'../interface'
;
/** * useFormContext 只会返回一些 Form 全局的状态,避免返回某个表单项的状态 */
declare
const
useFormContext
:
() =>
{
form
:
FormInstance
;
disabled
:
boolean
;
isSubmitting
:
boolean
; };
export
default
useFormContext;