()
| 2 | timer: NodeJS.Timer | null = null; |
| 3 | |
| 4 | start() { |
| 5 | if (api.type === 'webextension') { |
| 6 | this.timer = setInterval(chrome.runtime.getPlatformInfo, 20e3); |
| 7 | } |
| 8 | } |
| 9 | |
| 10 | stop() { |
| 11 | if (api.type === 'webextension') { |
no outgoing calls
no test coverage detected