Spaces:
Paused
Paused
File size: 302 Bytes
4fc4790 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import Foundation
enum MacNodeScreenCommand: String, Codable, Sendable {
case record = "screen.record"
}
struct MacNodeScreenRecordParams: Codable, Sendable, Equatable {
var screenIndex: Int?
var durationMs: Int?
var fps: Double?
var format: String?
var includeAudio: Bool?
}
|