UNPKG

@opentiny/fluent-editor

Version:

A rich text editor based on Quill 2.0, which extends rich modules and formats on the basis of Quill. It's powerful and out-of-the-box.

8 lines (7 loc) 273 B
/** * 深合并任意多个普通对象 * @param {object} target 目标对象(会被修改) * @param {...object} sources 任意多个来源对象 * @returns {object} 返回合并后的 target */ export declare function merge(target: any, ...sources: any[]): any;