Type Alias AdminResponse<Response>

AdminResponse: {
    body: Response;
    id: string;
    type: typeof ADMIN_API_TYPES["ADMIN_RESPONSE"];
}

Represents an admin response with a specific payload.

Type Parameters

  • Response = any

    The type of the response data.

Type declaration

  • body: Response

    Body of the response containing the response data.

  • id: string

    Unique identifier for the response.

  • type: typeof ADMIN_API_TYPES["ADMIN_RESPONSE"]

    Type of the admin API response.