Fix @throws TypeDocs

This commit is contained in:
Marc Rousavy
2021-03-08 18:04:44 +01:00
parent b1f78c0807
commit 1f96aaa69f
2 changed files with 4 additions and 4 deletions

View File

@@ -238,7 +238,7 @@ export class Camera extends React.PureComponent<CameraProps, CameraState> {
/**
* Take a single photo and write it's content to a temporary file.
*
* @throws {CameraCaptureError} When any kind of error occured. Use the `CameraCaptureError.code` property to get the actual error
* @throws {@link CameraCaptureError} When any kind of error occured. Use the `CameraCaptureError.code` property to get the actual error
*/
public async takePhoto(options?: TakePhotoOptions): Promise<PhotoFile> {
try {
@@ -275,7 +275,7 @@ export class Camera extends React.PureComponent<CameraProps, CameraState> {
*
* @blocking This function is synchronized/blocking.
*
* @throws {CameraCaptureError} When any kind of error occured. Use the `CameraCaptureError.code` property to get the actual error
* @throws {@link CameraCaptureError} When any kind of error occured. Use the `CameraCaptureError.code` property to get the actual error
*
* @example
* ```js