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

12 lines
344 B
TypeScript
Raw Normal View History

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