workadventure/front/src/Api/Events/CloseCoWebsiteEvent.ts
2021-10-25 19:00:26 +02:00

13 lines
336 B
TypeScript

import * as tg from "generic-type-guard";
export const isCloseCoWebsite = new tg.IsInterface()
.withProperties({
id: tg.isOptional(tg.isString)
})
.get();
/**
* A message sent from the iFrame to the game to add a message in the chat.
*/
export type CloseCoWebsiteEvent = tg.GuardedType<typeof isCloseCoWebsite>;