UNPKG

mongodb-aggregation-dts

Version:

Type definitions for MongoDB aggregation pipelines and operators

3 lines (2 loc) 146 B
export type AnyArray<T> = T[] | ReadonlyArray<T>; export type Unpacked<T> = T extends (infer U)[] ? U : T extends ReadonlyArray<infer U> ? U : T;