rudeshark.net/packages/megalodon/src/response.ts

9 lines
117 B
TypeScript
Raw Normal View History

type Response<T = any> = {
data: T
status: number
statusText: string
headers: any
}
export default Response