7 lines
109 B
TypeScript
7 lines
109 B
TypeScript
export * from './user'
|
|
|
|
export type IResponse<T = object | undefined> = {
|
|
msg: string
|
|
code: number
|
|
} & T
|