devowl-wp
    Preparing search index...

    Interface CollectionDefinition<SingleValue, Response>

    interface CollectionDefinition<
        SingleValue extends ClientModel<any>,
        Response extends RouteResponseInterface = SingleValue["data"][],
    > {
        getParameters: IRouteParamsInterface;
        getSingleParameters?: IRouteParamsInterface;
        model: SingleValue;
        response?: Response;
    }

    Type Parameters

    Index

    Properties

    getParameters: IRouteParamsInterface
    getSingleParameters?: IRouteParamsInterface
    response?: Response