UNPKG

301 BTypeScriptView Raw
1import type { SortObjectKeys } from './types.js';
2export default function getCollectionEntries(type: string, collection: unknown, sortObjectKeys: SortObjectKeys, limit: number, from?: number, to?: number): ({
3 key: string | number;
4 value: unknown;
5} | {
6 from: number;
7 to: number;
8})[];