UNPKG

arcade-physics

Version:
21 lines 651 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Moves the given array element below another one in the array. * The array is modified in-place. * * @function Phaser.Utils.Array.MoveBelow * @since 3.55.0 * * @param {array} array - The input array. * @param {*} item1 - The element to move below base element. * @param {*} item2 - The base element. * * * @return {array} The input array. */ export declare const MoveBelow: (array: any, item1: any, item2: any) => any; //# sourceMappingURL=MoveBelow.d.ts.map