@future-widget-lab/record-set
Version:
A dedicated data structure for in-memory record collections, offering fluent, immutable APIs for MongoDB-like querying, sorting, and transformation.
12 lines (11 loc) • 312 B
TypeScript
import type { Query } from 'sift';
type CountOptions<TRecord> = {
query?: Query<TRecord>;
records: Array<TRecord>;
};
/**
* @description
* Use this helper to count the number of records matching the query.
*/
export declare const count: <TRecord>(options: CountOptions<TRecord>) => number;
export {};