silverbullet/server/rpc.ts

11 lines
151 B
TypeScript
Raw Normal View History

2023-08-26 14:31:51 +08:00
export type ShellRequest = {
cmd: string;
args: string[];
};
export type ShellResponse = {
stdout: string;
stderr: string;
code: number;
};