Interface HttpResponse<T>

interface HttpResponse<T> {
    data: null | T;
    error: null | TallyError;
}

Type Parameters

  • T

Properties

Properties

data: null | T
error: null | TallyError