little fixes for moveTo example and with event return data

This commit is contained in:
Hanusiak Piotr 2022-01-20 10:04:19 +01:00
parent bf6b9a7c83
commit b088e63290
3 changed files with 22 additions and 1 deletions

View file

@ -0,0 +1,11 @@
import * as tg from "generic-type-guard";
export const isMovePlayerToEventAnswer = new tg.IsInterface()
.withProperties({
x: tg.isNumber,
y: tg.isNumber,
cancelled: tg.isBoolean,
})
.get();
export type MovePlayerToEventAnswer = tg.GuardedType<typeof isMovePlayerToEventAnswer>;