Interface ApiResponse<T>

interface ApiResponse<T> {
    data: null | T;
    error?: string;
    ok: boolean;
}

Type Parameters

  • T = any

Properties

Properties

data: null | T
error?: string
ok: boolean