From b73d735ecd3b9d4f123715cb76498b58ced813f3 Mon Sep 17 00:00:00 2001 From: Baku Hashimoto Date: Sun, 9 Jun 2024 20:39:26 +0900 Subject: [PATCH] Fix the type of stopBulbCapture --- src/Tethr.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tethr.ts b/src/Tethr.ts index fcb3f4d..3eeaa28 100644 --- a/src/Tethr.ts +++ b/src/Tethr.ts @@ -737,8 +737,8 @@ export abstract class Tethr return UnsupportedOperationResult } - async stopBulbCapture(): Promise { - return UnsupportedOperationResult + async stopBulbCapture(): Promise> { + return {status: 'unsupported'} } async startLiveview(): Promise> {