workadventure/front/src/Api/Events/GoToPageEvent.ts

13 lines
315 B
TypeScript
Raw Normal View History

import * as tg from "generic-type-guard";
2021-09-06 14:27:54 +02:00
export const isGoToPageEvent = new tg.IsInterface()
.withProperties({
url: tg.isString,
2021-09-06 14:27:54 +02:00
})
.get();
/**
* A message sent from the iFrame to the game to add a message in the chat.
*/
export type GoToPageEvent = tg.GuardedType<typeof isGoToPageEvent>;