| 25 | }; |
| 26 | |
| 27 | export class ShellApi { |
| 28 | constructor(private readonly channel: MessageSender) {} |
| 29 | |
| 30 | public create(): ShellProcess { |
| 31 | return new ShellProcess(this.channel); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | export class ShellProcess { |
| 36 | public id?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected