workadventure/front/src/Utils/CustomTypeGuards.ts

6 lines
244 B
TypeScript
Raw Permalink Normal View History

2022-02-02 13:30:49 +01:00
import type { OutlineableInterface } from "../Phaser/Game/OutlineableInterface";
2022-01-26 14:59:23 +01:00
export function isOutlineable(object: unknown): object is OutlineableInterface {
2022-01-27 16:50:25 +01:00
return (object as OutlineableInterface)?.pointerOverOutline !== undefined;
}