f03f8076f3
Fom script user can load, play and stop sound
12 lines
312 B
TypeScript
12 lines
312 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>;
|