coldbydefault-portfolio
    Preparing search index...

    Interface ApiResponse<T>

    interface ApiResponse<T = unknown> {
        data?: T;
        error?: string;
        message?: string;
        success: boolean;
    }

    Type Parameters

    • T = unknown

    Hierarchy (View Summary)

    Index

    Properties

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