UNPKG
cgreact-core
Version:
latest (1.1.7)
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
未发表!CGReact前端Web研发框架核心包
cgreact-core
/
types
/
cgreact-type-application.ts
9 lines
(8 loc)
•
282 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
//错误码
export
type
ErrorCodeEnum
=
400
|
401
|
403
|
404
|
499
|
500
|
501
;
// 错误定义
export
type
CGReactErrorState
= {
errcode
:
ErrorCodeEnum
,
explain
?:
string
,
//错误的描述,对code的解释
message
?:
string
,
//详细的报错原因和信息
}