UNPKG

node-red-contrib-post-object-detection

Version:
25 lines (24 loc) 527 B
type NodeRed = { nodes: NodeRedNodes; }; type NodeRedWire = { [index: number]: string; }; type NodeRedWires = { [index: number]: NodeRedWire; }; type NodeRedProperties = { id: string; type: string; name: string; classesURL: string; iou: string; minScore: string; wires: NodeRedWires; }; type NodeRedNodes = { createNode(node: any, props: NodeRedProperties): void; registerType(type: string, ctor: any): void; }; declare const _default: (RED: NodeRed) => void; export = _default;