Skip to content

Commit

Permalink
Add video recording and bulb capture methods to Tethr class
Browse files Browse the repository at this point in the history
  • Loading branch information
baku89 committed Jun 9, 2024
1 parent cd94cb3 commit 4c5054e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Tethr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,22 @@ export abstract class Tethr
return {status: 'unsupported'}
}

async startVideoRecording(): Promise<OperationResult> {
return UnsupportedOperationResult
}

async stopVideoRecording(): Promise<OperationResult> {
return UnsupportedOperationResult
}

async startBulbCapture(): Promise<OperationResult> {
return UnsupportedOperationResult
}

async stopBulbCapture(): Promise<OperationResult> {
return UnsupportedOperationResult
}

async startLiveview(): Promise<OperationResult<MediaStream>> {
return {status: 'unsupported'}
}
Expand Down

0 comments on commit 4c5054e

Please sign in to comment.