Nado Typescript SDK Documentation
    Preparing search index...

    Interface EngineServerQuerySuccessResponse<TQueryType>

    interface EngineServerQuerySuccessResponse<
        TQueryType extends
            keyof EngineServerQueryResponseByType = EngineServerQueryRequestType,
    > {
        status: "success";
        data: EngineServerQueryResponseByType[TQueryType];
    }

    Type Parameters

    Index

    Properties

    Properties

    status: "success"