Represents the response of a resource
The response type of the resource
type response = ResourceResponse<{ id: number }>;const response: response = Promise.resolve({ id: 1 });response.then((data) => console.log(data.id)); Copy
type response = ResourceResponse<{ id: number }>;const response: response = Promise.resolve({ id: 1 });response.then((data) => console.log(data.id));
Represents the response of a resource