openclaw / apps /macos /Sources /OpenClaw /NodeMode /MacNodeScreenCommands.swift
quinnz's picture
change port 18789 to 7860
3509093
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?
}