(key: string)
| 327 | }; |
| 328 | |
| 329 | const parseObjectKeyVideoId = (key: string) => |
| 330 | parseVideoIdFromObjectKey(key).pipe( |
| 331 | Option.map((id) => id as Video.VideoId), |
| 332 | Option.getOrNull, |
| 333 | ); |
| 334 | |
| 335 | const makeGoogleDriveAccess = ({ |
| 336 | repo, |
no test coverage detected