This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
frontend
/
cw_web
Obserwuj
2
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Drzewo:
96b955e073
Gałęzie
Tagi
f_eng_ver
f_i18n
main
cw_web
/
types
/
api.d.ts
api.d.ts
140 B
Historia
Czysty
1
2
3
4
5
6
/** 所有 api 接口的响应数据都应该准守该格式 */
interface ApiResponseData<T> {
code: number
data: T
message: string
}