Interface Results<T>

Interface describing the shape of Filtered Results. When invoking the Model.findAll method, an Observable of this interface shape is returned.

interface Results<T> {
    result: T[];
    total: number;
}

Type Parameters

Properties

Properties

result: T[]

An array of Models representing the Filtered results.

total: number

The total number of Results, useful for the implementation of a pageable representation of Filtered Results.

Generated using TypeDoc