@antdp/antdp-ui
Version:
基于antd封装的组件
8 lines (7 loc) • 334 B
TypeScript
import { UploadFile } from 'antd/es/upload/interface';
import { MenusProps } from '../ButtonGroupPro';
declare const imagePreview: (file: UploadFile, callback: (params: {
image: string;
}) => void) => Promise<void>;
declare const getMenusItems: (menus?: MenusProps[] | undefined) => any[];
export { imagePreview, getMenusItems };