UNPKG

@omnia/fx-models

Version:
11 lines (10 loc) 254 B
import { IPagingable } from "./IPagingable"; export interface ItemQueryResult<T> { total: number; items: Array<T>; } export declare class ItemQuery implements IPagingable { includeTotal?: boolean; itemLimit?: number; skip?: number; }