UNPKG

@thingjs/xplugin-bundle

Version:

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

30 lines (27 loc) 643 B
/** * 皮肤插件bundle */ import BundlePlugin from "../bundle/BundlePlugin"; declare class BundlePluginSkin { /** * 类类型 */ 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 BundlePluginSkin;