videosphere
    Preparing search index...

    Interface ApiResponse<T>

    Standard API response wrapper. Use this pattern to keep your API responses consistent.

    interface ApiResponse<T> {
        data: T;
        message?: string;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    data: T
    message?: string