UNPKG

arcade-physics

Version:
20 lines 584 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Moves the given element to the bottom of the array. * The array is modified in-place. * * @function Phaser.Utils.Array.SendToBack * @since 3.4.0 * * @param {array} array - The array. * @param {*} item - The element to move. * * @return {*} The element that was moved. */ declare const SendToBack: (array: any, item: any) => any; export { SendToBack }; //# sourceMappingURL=SendToBack.d.ts.map