mirror of
https://github.com/photonstorm/phaser
synced 2024-12-03 09:59:42 +00:00
9 lines
336 B
TypeScript
9 lines
336 B
TypeScript
/**
|
|
* 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;
|