node-anemometer
    Preparing search index...

    Type Alias GetDataConditions

    GetDataConditions: TimeCondition & {
        limit?: number;
        order?: "ASC" | "DESC" | "asc" | "desc";
    }

    Specifies conditions to retrieve data records from the history.

    Type declaration

    • Optionallimit?: number

      The maximum number of records to retrieve. If not specified, all matching records will be retrieved.

    • Optionalorder?: "ASC" | "DESC" | "asc" | "desc"

      The order in which to sort the records. 'ASC' or 'asc' for ascending order, 'DESC' or 'desc' for descending order.