UNPKG

@bernierllc/generic-workflow-ui

Version:

Generic, reusable workflow UI components with linear and graph visualization

10 lines 588 B
import React from 'react'; import { GenericWorkflowStatus, GenericActionButton, GenericActionButtonsConfig } from '../types'; export interface GenericActionButtonsProps<TStageMetadata = any> { workflowStatus: GenericWorkflowStatus<TStageMetadata>; config?: Partial<GenericActionButtonsConfig>; actions: GenericActionButton[]; disabled?: boolean; } export declare function GenericActionButtons<TStageMetadata = any>({ config: userConfig, actions, disabled }: GenericActionButtonsProps<TStageMetadata>): React.ReactElement; //# sourceMappingURL=GenericActionButtons.d.ts.map