export interface Properties { minimal: boolean; input: string; output: string; } import type { Node as RedNode, NodeMessage } from 'node-red'; export interface Node extends RedNode { input: (msg: NodeMessage) => unknown; output: (msg: NodeMessage, value: unknown) => void; }