Type Alias CustomNodeSkeleton

CustomNodeSkeleton: IdObjectSkeletonInterface & {
    description: string;
    displayName: string;
    errorOutcome: boolean;
    inputs: string[];
    outcomes: string[];
    outputs: string[];
    properties: Record<string, CustomNodeProperty>;
    script: string | string[];
    serviceName: string;
    tags: string[];
}