ci: fix lint and tau rpc typing
This commit is contained in:
@@ -7,7 +7,13 @@ type TauRpcOptions = {
|
||||
timeoutMs: number;
|
||||
};
|
||||
|
||||
type TauRpcResult = { stdout: string; stderr: string; code: number };
|
||||
type TauRpcResult = {
|
||||
stdout: string;
|
||||
stderr: string;
|
||||
code: number;
|
||||
signal?: NodeJS.Signals | null;
|
||||
killed?: boolean;
|
||||
};
|
||||
|
||||
class TauRpcClient {
|
||||
private child: ChildProcessWithoutNullStreams | null = null;
|
||||
|
||||
Reference in New Issue
Block a user