| 35 | } |
| 36 | |
| 37 | export interface INode { |
| 38 | label: string; |
| 39 | name: string; |
| 40 | version: number; |
| 41 | description: string; |
| 42 | type: string; |
| 43 | icon: string; |
| 44 | category: string; |
| 45 | baseClasses: string[]; |
| 46 | credential?: INodeParams; |
| 47 | inputs?: INodeParams[]; |
| 48 | init(nodeData: INodeData, _input: string, options: ICommonObject): Promise<unknown>; |
| 49 | } |
| 50 | |
| 51 | export interface INodeCredential { |
| 52 | label: string; |
no outgoing calls
no test coverage detected