QueuePrompt: {
    node_errors: any;
    number: number;
    prompt_id: string;
} | {
    error: string;
    node_errors: Record<string, {
        class_type: string;
        dependent_outputs: string[];
        errors: {
            details: string;
            extra_info: any;
            message: string;
            type: string;
        }[];
    }>;
}

Type declaration

  • node_errors: any
  • number: number
  • prompt_id: string

Type declaration

  • error: string
  • node_errors: Record<string, {
        class_type: string;
        dependent_outputs: string[];
        errors: {
            details: string;
            extra_info: any;
            message: string;
            type: string;
        }[];
    }>