Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
patroza committed Nov 30, 2023
1 parent 4def152 commit 9c3fc59
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/prelude/_src/fluent-extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,16 @@ export const installFluentExtensions = <R>(runtime: Runtime<R>) => {
/*
import type * as Runtime from "effect/Runtime"
import type * as Fiber from "effect/Fiber"
import type { RT } from "./effect-runtime"
declare module "effect/Effect" {
export interface Effect<R, E, A> {
get runPromise(this: Effect<RT, E, A>): Promise<A>
get runSync(this: Effect<RT, E, A>): A
runFork<E, A>(this: Effect<RT, E, A>, options?: Runtime.RunForkOptions): Fiber.RuntimeFiber<E, A>
runFork<E, A>(
this: Effect<RT, E, A>,
options?: Runtime.RunForkOptions,
): Fiber.RuntimeFiber<E, A>
}
}
*/
Expand Down

0 comments on commit 9c3fc59

Please sign in to comment.