@olegivaniv/n8n-nodes-overkiz-tahoma
Version:
This is an n8n community node. It lets you use Overkiz (Tahoma) in your n8n workflows.
26 lines (25 loc) • 713 B
TypeScript
import type { IExecuteFunctions } from 'n8n-workflow';
import type { Command } from 'overkiz-api';
export declare const lightsCommands: {
DimmerLight: {
commands: {
value: string;
name: string;
commands: (executionCtx: IExecuteFunctions) => Command[];
}[];
};
DimmerHueSatOrCTLight: {
commands: {
value: string;
name: string;
commands: (executionCtx: IExecuteFunctions) => Command[];
}[];
};
DimmerColorTemperatureLight: {
commands: {
value: string;
name: string;
commands: (executionCtx: IExecuteFunctions) => Command[];
}[];
};
};