added loadPage Api call

This commit is contained in:
jonny 2021-04-21 11:20:17 +02:00
parent 5dc2f0ac47
commit 6c6789411a
4 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import * as tg from "generic-type-guard";
export const isLoadPageEvent =
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 LoadPageEvent = tg.GuardedType<typeof isLoadPageEvent>;