import 'xe-utils' import { XEUtilsMethods } from 'xe-utils/ctor' export interface MlUtilsCore extends XEUtilsMethods { toDateString (date: any, format?: string): string toStringDate (value: any): Date saveFileByUrl (url: string, name: string, option?: any): Promise saveFileByBlob (blob: Blob, name: string): Promise base64ToBlob (base64Data: string): blob getFileSuffix (filename: string): string toNumMoneyToChinese (money: any): string toAmountString (value: any, fixed?: number): string toWanAmountString (value: any, fixed?: number): string [key: string]: any } export const MaliUtils: MlUtilsCore