mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
14 lines
282 B
Swift
14 lines
282 B
Swift
import Foundation
|
|
|
|
enum MacNodeScreenCommand: String, Codable {
|
|
case record = "screen.record"
|
|
}
|
|
|
|
struct MacNodeScreenRecordParams: Codable, Equatable {
|
|
var screenIndex: Int?
|
|
var durationMs: Int?
|
|
var fps: Double?
|
|
var format: String?
|
|
var includeAudio: Bool?
|
|
}
|