UNPKG

sp-app-react

Version:

React based Controls and Utilities for building applications in SharePoint

12 lines (11 loc) 405 B
/// <reference types="react" /> import { WorkflowStep, SPTask } from './types'; interface SPTaskModalProps { isOpen: boolean; workflowStep?: WorkflowStep; tasks: SPTask[]; hideModal: any; onOutcomeClick: (outcome: any, task: SPTask, hideModal: any, workflowStep?: WorkflowStep) => any; } export declare function SPTaskModal(props: SPTaskModalProps): JSX.Element; export {};