blob: 5d00937968a6d39187d12674929a2635c35d1a9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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")
}
|