Skip to content

Commit

Permalink
fix: zap issue
Browse files Browse the repository at this point in the history
  • Loading branch information
eliassjogreen committed Feb 20, 2024
1 parent bb22278 commit 68df9d3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ console.warn("This is going to stdout");
console.log("This is going to stdout");
```


## Maintainers

- Elias Sjögreen ([@eliassjogreen](https://github.com/eliassjogreen))
Expand Down
2 changes: 1 addition & 1 deletion writables/stderr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { getStdWritableStream } from "../utils/std.ts";
/**
* Get a runtime agnostic writable stream for stderr.
*/
export function getStderrWritableStream() {
export function getStderrWritableStream(): WritableStream<Uint8Array> {
return getStdWritableStream("stderr");
}
2 changes: 1 addition & 1 deletion writables/stdout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { getStdWritableStream } from "../utils/std.ts";
/**
* Get a runtime agnostic writable stream for stdout.
*/
export function getStdoutWritableStream() {
export function getStdoutWritableStream(): WritableStream<Uint8Array> {
return getStdWritableStream("stdout");
}

0 comments on commit 68df9d3

Please sign in to comment.