UNPKG

ravendb

Version:
13 lines 395 B
export interface IPagingDocumentQueryBase<T, TSelf extends IPagingDocumentQueryBase<T, TSelf>> { /** * Skips the specified count. * @param count Items to skip */ skip(count: number): TSelf; /** * Takes the specified count. * @param count Amount of items to take */ take(count: number): TSelf; } //# sourceMappingURL=IPagingDocumentQueryBase.d.ts.map