phaser/v3/typings/utils/object/Extend.d.ts

10 lines
336 B
TypeScript
Raw Normal View History

2017-01-16 21:43:07 +00:00
/**
* This is a slightly modified version of http://api.jquery.com/jQuery.extend/
*
* @method Phaser.Utils.extend
* @param {boolean} deep - Perform a deep copy?
* @param {object} target - The target object to copy to.
* @return {object} The extended object.
*/
export default function Extend(deep?: any, target?: any, copy?: any): any;