( settings: ExtensionSettings, auth: ExtensionAuth, videoId: string, )
| 211 | }); |
| 212 | |
| 213 | export const deleteInstantRecording = ( |
| 214 | settings: ExtensionSettings, |
| 215 | auth: ExtensionAuth, |
| 216 | videoId: string, |
| 217 | ) => |
| 218 | requestJson<{ success: boolean }>({ |
| 219 | settings, |
| 220 | auth, |
| 221 | path: extensionApiPath(ExtensionApiPaths.deleteInstantRecording(videoId)), |
| 222 | method: "DELETE", |
| 223 | }); |
no test coverage detected