blob: 0a0f820dde0a70402baaf8054611dcb99e78d06a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import Foundation
extension Notification.Name {
static let startAreaSelection = Notification.Name("startSelectingArea")
static let startRecording = Notification.Name("startRecording")
static let stopRecording = Notification.Name("stopRecording")
static let finalizeRecording = Notification.Name("finalizeRecording")
static let reset = Notification.Name("reset")
static let failedToStart = Notification.Name("failedToStart")
static let receivedFrame = Notification.Name("receivedFrame")
static let failedtoUpload = Notification.Name("failedToUpload")
}
|