import type { _A, _E, _K, _R, _V } from "@effect/core/stream/GroupBy/definition/symbols"; export declare const GroupBySym: unique symbol; export type GroupBySym = typeof GroupBySym; /** * Representation of a grouped stream. This allows to filter which groups will * be processed. Once this is applied all groups will be processed in parallel * and the results will be merged in arbitrary order. * * @tsplus type effect/core/stream/GroupBy */ export interface GroupBy { readonly [GroupBySym]: GroupBySym; readonly [_R]: (_: R) => void; readonly [_E]: () => E; readonly [_K]: () => K; readonly [_V]: () => V; readonly [_A]: () => A; } /** * @tsplus type effect/core/stream/GroupBy.Ops */ export interface GroupByOps { $: GroupByAspects; } export declare const GroupBy: GroupByOps; /** * @tsplus type effect/core/stream/GroupBy.Aspects */ export interface GroupByAspects { } export type UniqueKey = number; //# sourceMappingURL=base.d.ts.map