Skip to content

Commit

Permalink
Fix the type of stopBulbCapture
Browse files Browse the repository at this point in the history
  • Loading branch information
baku89 committed Jun 9, 2024
1 parent 0952c1c commit b73d735
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tethr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -737,8 +737,8 @@ export abstract class Tethr
return UnsupportedOperationResult
}

async stopBulbCapture(): Promise<OperationResult> {
return UnsupportedOperationResult
async stopBulbCapture(): Promise<OperationResult<TethrObject[]>> {
return {status: 'unsupported'}
}

async startLiveview(): Promise<OperationResult<MediaStream>> {
Expand Down

0 comments on commit b73d735

Please sign in to comment.