WebIndex/types/index.ts
2025-01-13 23:12:06 +08:00

8 lines
112 B
TypeScript

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