1
0
silverbullet/server/rpc.ts
2024-01-13 18:07:02 +01:00

11 lines
151 B
TypeScript

export type ShellRequest = {
cmd: string;
args: string[];
};
export type ShellResponse = {
stdout: string;
stderr: string;
code: number;
};