Files
clawdbot/apps/shared/ClawdisKit/Sources/ClawdisKit/ScreenCommands.swift
2025-12-19 03:16:25 +01:00

28 lines
709 B
Swift

import Foundation
public enum ClawdisScreenCommand: String, Codable, Sendable {
case record = "screen.record"
}
public struct ClawdisScreenRecordParams: Codable, Sendable, Equatable {
public var screenIndex: Int?
public var durationMs: Int?
public var fps: Double?
public var format: String?
public var includeAudio: Bool?
public init(
screenIndex: Int? = nil,
durationMs: Int? = nil,
fps: Double? = nil,
format: String? = nil,
includeAudio: Bool? = nil)
{
self.screenIndex = screenIndex
self.durationMs = durationMs
self.fps = fps
self.format = format
self.includeAudio = includeAudio
}
}