fastlion-amis
Version:
一种MIS页面生成工具
24 lines (23 loc) • 916 B
TypeScript
import React from 'react';
import { RendererEnv } from '../../../../../env';
import { Api, SchemaNode } from '../../../../../types';
import { ImageThumbProps } from '../../../../Image';
import { AttachmentApi, FlowDetail } from '../../type';
import './index.scss';
interface Flowmodalko {
env: RendererEnv;
render: (region: string, node: SchemaNode, props?: any) => JSX.Element;
onRef: React.RefObject<any>;
flowDetail: FlowDetail;
taskId: string;
onImageEnlarge?: (info: Pick<ImageThumbProps, 'src' | 'originalSrc' | 'title' | 'caption'> & {
index?: number;
list?: Array<Pick<ImageThumbProps, 'src' | 'originalSrc' | 'title' | 'caption'>>;
}) => void;
returnNodeApi?: Api;
handleOnClick: () => void;
attachmentApi: AttachmentApi;
name: string;
}
declare const FlowModalReturn: React.FC<Flowmodalko>;
export default FlowModalReturn;