workadventure/front/src/Api/Events/CloseCoWebsiteEvent.ts
2021-11-24 15:29:12 +01:00

13 lines
337 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>;