workadventure/front/src/Api/Events/LoadSoundEvent.ts
2021-09-06 14:31:59 +02:00

13 lines
318 B
TypeScript

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