Files

12 lines
354 B
Swift

#if os(iOS)
/// The states of the recording flow a Live Activity can show.
public enum RecordingActivityState: String, Codable, Hashable, Sendable {
/// A recording is in progress and its timer is running.
case recording
/// The recording is paused.
case paused
/// The recorded input is being processed.
case processing
}
#endif