effect 3.16.7 → 3.16.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6196,6 +6196,31 @@ export declare const provideContext: {
6196
6196
  */
6197
6197
  <A, E, R>(self: Stream<A, E, R>, context: Context.Context<R>): Stream<A, E>;
6198
6198
  };
6199
+ /**
6200
+ * Provides the stream with some of its required context, which eliminates its
6201
+ * dependency on `R`.
6202
+ *
6203
+ * @since 3.16.9
6204
+ * @category context
6205
+ */
6206
+ export declare const provideSomeContext: {
6207
+ /**
6208
+ * Provides the stream with some of its required context, which eliminates its
6209
+ * dependency on `R`.
6210
+ *
6211
+ * @since 3.16.9
6212
+ * @category context
6213
+ */
6214
+ <R2>(context: Context.Context<R2>): <A, E, R>(self: Stream<A, E, R>) => Stream<A, E, Exclude<R, R2>>;
6215
+ /**
6216
+ * Provides the stream with some of its required context, which eliminates its
6217
+ * dependency on `R`.
6218
+ *
6219
+ * @since 3.16.9
6220
+ * @category context
6221
+ */
6222
+ <A, E, R, R2>(self: Stream<A, E, R>, context: Context.Context<R2>): Stream<A, E, Exclude<R, R2>>;
6223
+ };
6199
6224
  /**
6200
6225
  * Provides a `Layer` to the stream, which translates it to another level.
6201
6226
  *