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

13 lines
336 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({
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>;