Type alias NullResponse<Meta>

NullResponse<Meta>: {
    t: "null";
    data: null;
    meta?: Meta;
}

A null response

This is something you might return on, for example, a DELETE request. It simply indicates that the request was successful but that there was no data to return.

Type Parameters

  • Meta extends unknown = unknown

Type declaration

  • t: "null"
  • data: null
  • Optional meta?: Meta

Generated using TypeDoc