@byteplus/veplayer 1.9.3-rc.3 → 1.9.3-rc.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -4006,9 +4006,21 @@ declare enum UmdKeys {
4006
4006
  * @breif umdmap 配置
4007
4007
  */
4008
4008
  export declare type UMDMap = Record<UmdKeys, {
4009
+ /**
4010
+ * umd Module 的名称,即在window下暴露的接口名称
4011
+ */
4009
4012
  name: string;
4013
+ /**
4014
+ * 对应umd文件名,只用来标记,实际不使用
4015
+ */
4010
4016
  pluginName?: string;
4017
+ /**
4018
+ * 对应npm包的名称,在打包文件时,会在libd.config.js中onPostBuild的钩子中会用于寻找对应npm包
4019
+ */
4011
4020
  packageName: string;
4021
+ /**
4022
+ * npm包中umd入口文件路径,用于打包上传到cdn目录
4023
+ */
4012
4024
  devPath: string;
4013
4025
  }>;
4014
4026
  declare class umdLoader {