arcade-physics
Version:
Use Arcade Physics without Phaser.
18 lines • 565 B
TypeScript
export = Base64Decode;
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2013-2023 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Decode base-64 encoded data, for example as exported by Tiled.
*
* @function Phaser.Tilemaps.Parsers.Tiled.Base64Decode
* @since 3.0.0
*
* @param {object} data - Base-64 encoded data to decode.
*
* @return {array} Array containing the decoded bytes.
*/
declare function Base64Decode(data: object): any[];
//# sourceMappingURL=Base64Decode.d.ts.map