amaran-light-cli
Version:
Command line tool for controlling Aputure Amaran lights via WebSocket to a local Amaran desktop app.
23 lines • 603 B
TypeScript
export declare const DEVICE_DEFAULTS: {
updateInterval: number;
simulationDuration: number;
reconnectAttempts: number;
reconnectDelay: number;
commandThrottleDelay: number;
statusCheckDelay: number;
};
export declare const VALIDATION_RANGES: {
cct: {
min: number;
max: number;
};
intensity: {
min: number;
max: number;
};
};
export declare const ERROR_MESSAGES: {
readonly invalidDuration: "Duration must be at least 1 second";
readonly deviceNotFound: (device: string) => string;
};
//# sourceMappingURL=constants.d.ts.map