barkey/packages/megalodon/src/response.ts

9 lines
117 B
TypeScript
Raw Normal View History

2023-09-23 16:49:47 +00:00
type Response<T = any> = {
2023-09-23 23:44:53 +00:00
data: T
status: number
statusText: string
headers: any
}
2023-09-23 16:49:47 +00:00
2023-09-23 23:44:53 +00:00
export default Response