Skip to content

Commit

Permalink
fix type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart authored and gcanti committed Jul 4, 2024
1 parent 66cb0f0 commit bce9f6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/effect/src/Logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,8 @@ export const stringLogger: Logger<unknown, string> = internal.stringLogger
* @category constructors
*/
export const prettyLogger: (
options?: { readonly colors?: "auto" | boolean }
) => Logger<unknown, Array<Array<unknown>>> = internal.prettyLogger
options?: { readonly colors?: "auto" | boolean | undefined; readonly stderr?: boolean | undefined }
) => Logger<unknown, void> = internal.prettyLogger

/**
* @since 2.0.0
Expand Down

0 comments on commit bce9f6a

Please sign in to comment.