WebIndex/types/index.d.ts

5 lines
90 B
TypeScript
Raw Normal View History

2024-11-17 11:45:08 +08:00
declare interface IBlogResponse<T = null> {
status: string
message: string
data: T
}