import { Component } from "./component"; export interface IAsset { assetType?: string; fetch?: Function; } /** * @description : Asset 可以考虑放在资源管理器中 * @param {*} * @return {*} * @example : */ export declare abstract class Asset extends Component implements IAsset { assetType?: string; content?: any; url: string; createTime: number; hash: string; constructor(); save(): void; imageMD5(file: any): Promise; }