WebIndex/types/index.d.ts
2024-11-17 11:45:08 +08:00

5 lines
90 B
TypeScript

declare interface IBlogResponse<T = null> {
status: string
message: string
data: T
}