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

29 lines (20 loc) 987 B
declare module 'phaser3-rex-plugins/plugins/board/fieldofview/Methods' { import IsInCone from 'phaser3-rex-plugins/plugins/board/fieldofview/IsInCone'; import IsInLOS from 'phaser3-rex-plugins/plugins/board/fieldofview/IsInLOS'; import IsPathVisible from 'phaser3-rex-plugins/plugins/board/fieldofview/IsPathVisible'; import LOS from 'phaser3-rex-plugins/plugins/board/fieldofview/LOS'; import PreTest from 'phaser3-rex-plugins/plugins/board/fieldofview/PreTest'; import FindFOV from 'phaser3-rex-plugins/plugins/board/fieldofview/FindFOV'; import GetCost from 'phaser3-rex-plugins/plugins/board/fieldofview/GetCost'; interface MethodsType { preTest: typeof PreTest; getCost: typeof GetCost; isInCone: typeof IsInCone; isPathVisible: typeof IsPathVisible; isInLOS: typeof IsInLOS; LOS: typeof LOS; findFOV: typeof FindFOV; } const Methods: MethodsType; export default Methods; }