IntelliClass_FE/api/index.ts

7 lines
109 B
TypeScript

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