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

13 lines
337 B
TypeScript
Raw Normal View History

2021-10-12 10:38:49 +02:00
import * as tg from "generic-type-guard";
export const isCloseCoWebsite = new tg.IsInterface()
.withProperties({
2021-11-24 15:29:12 +01:00
id: tg.isOptional(tg.isString),
2021-10-12 10:38:49 +02:00
})
.get();
/**
* A message sent from the iFrame to the game to add a message in the chat.
*/
export type CloseCoWebsiteEvent = tg.GuardedType<typeof isCloseCoWebsite>;