@difizen/ai-flow
Version:
Scalable, out-of-the-box, agent-oriented flow
31 lines (30 loc) • 767 B
TypeScript
export type RunStatusTypes = 'success' | 'processing' | 'warning' | 'error';
export declare const RunStatusMap: {
success: {
Label: string;
Color: string;
Cssclsname: string;
};
processing: {
Label: string;
Color: string;
Cssclsname: string;
};
warning: {
Label: string;
Color: string;
Cssclsname: string;
};
error: {
Label: string;
Color: string;
Cssclsname: string;
};
};
export interface RunResStatus {
status: RunStatusTypes;
runDuration: number;
runInput?: Record<string, string>;
runOutput?: Record<string, string>;
}
export declare const NodeStatus: (props: RunResStatus) => import("react/jsx-runtime").JSX.Element;