dashboard
repositories
filestore
activity
search
login
main
/
wakuwaku
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
waku ext
lefengyang
2026-08-20
d01a28cb030b2cb0ff1d42273c877a0f728519a6
[wakuwaku.git]
/
wakuwaku-node-client
/
src
/
type
/
IApiResponse.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
* 通用 API 响应体
*/
export interface IApiResponse<T> {
/**
* 状态码
*/
code: number;
/**
* 消息
*/
message?: string;
/**
* 数据
*/
data: T;
}