/** * 插件静态资源工具类 * * @export * @class PluginStaticResource */ export declare class PluginStaticResource { private isDev; /** * 计算出的静态资源跟路径 * * @protected * @type {string} */ protected baseDir: string; /** * mete 路径解析对象 * * @protected * @type {URL} */ protected url: URL; /** * 插件静态资源工具类. * * @param {string} mateUrl * @param {boolean} [isDev=false] */ constructor(mateUrl: string, isDev?: boolean); /** * 合并输出静态资源目录 * * @param {string} pathStr * @return {*} {string} */ dir(pathStr: string): string; }