24 lines
679 B
TypeScript
24 lines
679 B
TypeScript
import React from 'react';
|
|
import type { ModalProps, DescriptionsProps, TabsProps } from 'antd';
|
|
import './index.less';
|
|
export declare const componentPrefix = "zhst-image";
|
|
export interface BigImageModalProps extends ModalProps {
|
|
visible: boolean;
|
|
descriptionConfig: {
|
|
data: {
|
|
title: string;
|
|
children: Pick<DescriptionsProps, 'items'>;
|
|
}[];
|
|
};
|
|
tabsConfig: {
|
|
data: Pick<TabsProps, 'items'> & {
|
|
key: 'NORMAL' | 'COMPATER' | 'TRACK';
|
|
};
|
|
};
|
|
dataSource: any;
|
|
imageData: any;
|
|
relatedData: any;
|
|
}
|
|
declare const BigImageModal: React.FC<BigImageModalProps>;
|
|
export default BigImageModal;
|