Interface Response<T>

interface Response<T> {
    error?: string;
    result?: T;
}

Type Parameters

  • T = any

Properties

Properties

error?: string
result?: T