From cde4dbb35132848ffece59ef9cfaccff32347124 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 14 Jul 2020 15:24:17 -0400 Subject: Use dprint for internal formatting (#6682) --- cli/js/process.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'cli/js/process.ts') diff --git a/cli/js/process.ts b/cli/js/process.ts index ee32eac3d..0844dd8fd 100644 --- a/cli/js/process.ts +++ b/cli/js/process.ts @@ -33,14 +33,11 @@ async function runStatus(rid: number): Promise { export class Process { readonly rid: number; readonly pid: number; - readonly stdin!: T["stdin"] extends "piped" - ? Writer & Closer + readonly stdin!: T["stdin"] extends "piped" ? Writer & Closer : (Writer & Closer) | null; - readonly stdout!: T["stdout"] extends "piped" - ? Reader & Closer + readonly stdout!: T["stdout"] extends "piped" ? Reader & Closer : (Reader & Closer) | null; - readonly stderr!: T["stderr"] extends "piped" - ? Reader & Closer + readonly stderr!: T["stderr"] extends "piped" ? Reader & Closer : (Reader & Closer) | null; // @internal -- cgit v1.2.3