(global: Partial<Global.Interface>, flags?: Partial<RuntimeFlags.Info>)
| 41 | |
| 42 | const provideInstruction = |
| 43 | (global: Partial<Global.Interface>, flags?: Partial<RuntimeFlags.Info>) => |
| 44 | <A, E, R>(self: Effect.Effect<A, E, R>) => |
| 45 | self.pipe(Effect.provide(instructionLayer(global, flags))) |
| 46 | |
| 47 | const write = (filepath: string, content: string) => |
| 48 | Effect.gen(function* () { |
no test coverage detected