Skip to content

Commit

Permalink
fix type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart committed Jul 4, 2024
1 parent e209564 commit a26e545
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 a26e545

Please sign in to comment.