(command: string | undefined)
| 114 | } |
| 115 | |
| 116 | function isInstallLikeCommand(command: string | undefined): boolean { |
| 117 | return ( |
| 118 | command === PUBLIC_COMMANDS.install || |
| 119 | command === PUBLIC_COMMANDS.reinstall || |
| 120 | command === INTERNAL_COMMANDS.installSource |
| 121 | ); |
| 122 | } |
| 123 | |
| 124 | export function resolveDaemonRequestTimeoutMs( |
| 125 | req: Omit<DaemonRequest, 'token'>, |
no outgoing calls
no test coverage detected
searching dependent graphs…