mirror of
https://github.com/palxiao/poster-design.git
synced 2025-07-15 16:02:19 +08:00
9 lines
101 B
TypeScript
9 lines
101 B
TypeScript
|
|
/** 公共API返回结果 */
|
|
type TCommResResult<T> = {
|
|
code: number
|
|
msg: string
|
|
result: T
|
|
}
|
|
|