WebIndex/types/index.ts

8 lines
112 B
TypeScript
Raw Normal View History

2025-01-13 23:12:06 +08:00
declare global {
interface IBlogResponse<T = null> {
status: string
message: string
data: T
}
}