@aplus-frontend/ui
Version:
13 lines (12 loc) • 421 B
TypeScript
import { ApDownLoadNeedNameModel } from '../interface';
/**
* 根据needName将fileName转换为OSS下载格式
*/
export declare function getFileInfo(needName?: ApDownLoadNeedNameModel, fileName?: any): {
path: string;
fileName: string;
}[];
/**
* 根据hexColor颜色和opacity透明度计算rgba颜色数值,返回
*/
export declare function getHexWithOpacity(hexColor: string, opacity: number): string;