Files
LingChair/server/Types.js
2025-03-22 22:32:06 +08:00

40 lines
617 B
JavaScript

export class TheWhiteSilkParams {
/**
* @type { String }
*/
method
/**
* @type { Object }
*/
args
}
export class CallbackMessage {
static Code = class {
/**
* 无权限
*/
static PERMISSION_DENIED = 401
/**
* 不存在
*/
static NOT_FOUND = 404
/**
* 服务端错误
*/
static SERVER_ERROR = 500
/**
* 请求成功
*/
static OK = 200
}
/**
* @type { String }
*/
msg
/**
* @type { Number }
*/
code
}