exec 命令的返回结果
| 25 | |
| 26 | /** exec 命令的返回结果 */ |
| 27 | interface ExecResult { |
| 28 | errno: number; |
| 29 | stdout: string; |
| 30 | stderr: string; |
| 31 | } |
| 32 | |
| 33 | /** API 查询响应 */ |
| 34 | interface CertQueryResponse { |
nothing calls this directly
no outgoing calls
no test coverage detected