Skip to content

Commit e3dbefa

Browse files
authored
fix: Remove leftover process streams (#2519)
1 parent d32ef08 commit e3dbefa

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Diff for: std/assembly/process.ts

-7
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,6 @@ export namespace process {
2828
process_binding.exit(code);
2929
}
3030

31-
// @ts-ignore: decorator
32-
@lazy export const stdin = changetype<ReadableStream>(0);
33-
// @ts-ignore: decorator
34-
@lazy export const stdout = changetype<WritableStream>(1);
35-
// @ts-ignore: decorator
36-
@lazy export const stderr = changetype<WritableStream>(2);
37-
3831
export function time(): i64 {
3932
return Date_binding.now();
4033
}

0 commit comments

Comments
 (0)