UNPKG

fastlion-amis

Version:

一种MIS页面生成工具

17 lines (16 loc) 676 B
import React from 'react'; import { RendererEnv } from '../../../../../env'; import { FlowDetail, processNodeList } from '../../../MobileProcess/type'; import './index.scss'; import { ImageThumbProps } from '../../../../Image'; interface FlowViewProps { processNode: processNodeList[]; flowDetail: FlowDetail; env?: RendererEnv; onImageEnlarge?: (info: Pick<ImageThumbProps, 'src' | 'originalSrc' | 'title' | 'caption'> & { index?: number; list?: Array<Pick<ImageThumbProps, 'src' | 'originalSrc' | 'title' | 'caption'>>; }) => void; } declare const FlowInformation: React.FC<FlowViewProps>; export default FlowInformation;