UNPKG

@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.

11 lines (10 loc) 289 B
type AtOptions<TRecord> = { index: number; records: Array<TRecord>; }; /** * @description * Use this helper to retrieve the record at the specified index, or null if out of bounds. */ export declare const at: <TRecord>(options: AtOptions<TRecord>) => TRecord | null; export {};