UNPKG

@thingjs-x4/xplugin-bundle

Version:

xplugin-bundle ThingJS-X 插件描述文件

28 lines (25 loc) 732 B
import BundlePlugin from "../../bundle/BundlePlugin"; import BundlePluginAbstractSkin from "../BundlePluginAbstractSkin"; declare class BundlePluginSkinBusiness extends BundlePluginAbstractSkin{ /** * 类类型 */ static CLASSTYPE:string /** * BundlePlugin bundle 节点 */ bundle:BundlePlugin; /** * * @param id 资源唯一标识:『 必填 』 * @param name 资源名称:『 必填 』 * @param author 资源作者 * @param version 资源版本::『 default:1.0.0 』 */ constructor(id:string, name:string, author:string, version:string); /** * 获取bundle 描述信息 */ toJSON():string; } export default BundlePluginSkinBusiness;