WebIndex/types/index.d.ts
2025-01-13 21:51:37 +08:00

6 lines
91 B
TypeScript

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