import { Stream } from "@effect/core/stream/Stream/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; /** * If this stream is empty, produce the specified element or chunk of elements, * or switch to the specified stream. * @tsplus static effect/core/stream/Stream.Aspects defaultIfEmpty * @tsplus pipeable effect/core/stream/Stream defaultIfEmpty * @tsplus location "@effect/core/stream/Stream/operations/defaultIfEmpty" */ export declare function defaultIfEmpty(stream: Stream): (self: Stream) => Stream; export declare function defaultIfEmpty(chunk: Chunk): (self: Stream) => Stream; export declare function defaultIfEmpty(value: A1): (self: Stream) => Stream; //# sourceMappingURL=defaultIfEmpty.d.ts.map