11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
import * as tg from "generic-type-guard";
|
|
|
|
export const isStopSoundEvent =
|
|
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 StopSoundEvent = tg.GuardedType<typeof isStopSoundEvent>;
|