* Add props
* add props (iOS)
* Add use-cases conditionally
* Update CameraView+RecordVideo.swift
* Update RecordingSession.swift
* reconfigure on change
* Throw correct errors
* Check for audio permission
* Move `#if` outward
* Throw appropriate errors
* Update CameraView+RecordVideo.swift
* fix Splashscreen
* Dynamic filePath
* Fix video extension
* add `avci` and `m4v` file types
* Fix RecordVideo errors
* Fix audio setup
* Enable `photo`, `video` and `audio`
* Check for `video={true}` in frameProcessor
* format
* Remove unused DispatchQueue
* Update docs
* Add `supportsPhotoAndVideoCapture`
* Fix view manager
* Fix error not being propagated
* Catch normal errors too
* Update DEVICES.mdx
* Update CAPTURING.mdx
* Update classdocs
24 lines
549 B
Swift
24 lines
549 B
Swift
//
|
|
// EnumParserError.swift
|
|
// Cuvent
|
|
//
|
|
// Created by Marc Rousavy on 18.12.20.
|
|
// Copyright © 2020 mrousavy. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/**
|
|
An error raised when the given descriptor (TypeScript string union type) cannot be parsed and converted to a Swift enum.
|
|
*/
|
|
enum EnumParserError: Error {
|
|
/**
|
|
Raised when the descriptor is not supported on the current OS.
|
|
*/
|
|
case unsupportedOS(supportedOnOS: String)
|
|
/**
|
|
Raised when the descriptor does not match any of the possible values.
|
|
*/
|
|
case invalidValue
|
|
}
|