Interface HonuaApiEnvelope<T>

interface HonuaApiEnvelope<T> {
    data: T;
    message?: string;
    success: boolean;
    timestamp?: string;
}

Type Parameters

  • T

Properties

data: T
message?: string
success: boolean
timestamp?: string