UNPKG

phaser3-rex-plugins-types

Version:

[![npm](https://img.shields.io/npm/v/phaser3-rex-plugins-types.svg)](https://www.npmjs.com/package/phaser3-rex-plugins-types) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier) [![B

26 lines (18 loc) 978 B
declare module 'phaser3-rex-plugins/plugins/board/moveto/Methods' { import CanMoveToTile from 'phaser3-rex-plugins/plugins/board/moveto/CanMoveToTile'; import {MoveToTileType} from 'phaser3-rex-plugins/plugins/board/moveto/MoveToTile'; import {MoveTowardType} from 'phaser3-rex-plugins/plugins/board/moveto/MoveToward'; import {MoveToRandomNeighborType} from 'phaser3-rex-plugins/plugins/board/moveto/MoveToRandomNeighbor'; import {MoveCloserType} from 'phaser3-rex-plugins/plugins/board/moveto/MoveCloser'; import {MoveAwayType} from 'phaser3-rex-plugins/plugins/board/moveto/MoveAway'; interface MethodsType { canMoveTo: typeof CanMoveToTile; moveTo: MoveToTileType<this>; moveToward: MoveTowardType<this>; moveToRandomNeighbor: MoveToRandomNeighborType<this>; moveAway: MoveAwayType<this>; moveCloser: MoveCloserType<this>; } const Methods: MethodsType; export default Methods; }