From 4c5054e07c46d2b5ee95a7fd04522c72023ecec6 Mon Sep 17 00:00:00 2001 From: Baku Hashimoto Date: Sun, 9 Jun 2024 11:43:35 +0900 Subject: [PATCH] Add video recording and bulb capture methods to Tethr class --- src/Tethr.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/Tethr.ts b/src/Tethr.ts index f998c80..2efe9be 100644 --- a/src/Tethr.ts +++ b/src/Tethr.ts @@ -691,6 +691,22 @@ export abstract class Tethr return {status: 'unsupported'} } + async startVideoRecording(): Promise { + return UnsupportedOperationResult + } + + async stopVideoRecording(): Promise { + return UnsupportedOperationResult + } + + async startBulbCapture(): Promise { + return UnsupportedOperationResult + } + + async stopBulbCapture(): Promise { + return UnsupportedOperationResult + } + async startLiveview(): Promise> { return {status: 'unsupported'} }