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.

10 lines (9 loc) 244 B
type ReverseOptions<TRecord> = { records: Array<TRecord>; }; /** * @description * Use this method to reverse the order of the records. */ export declare const reverse: <TRecord>(options: ReverseOptions<TRecord>) => TRecord[]; export {};