n8n-nodes-kodi
Version:
A powerful n8n community node for controlling Kodi media center through JSON-RPC API with intelligent method discovery and comprehensive media management capabilities
12 lines (11 loc) • 576 B
TypeScript
import { type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription, type INodePropertyOptions, type ILoadOptionsFunctions } from 'n8n-workflow';
export declare class Kodi implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getMethodCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getMethods(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}