Popup openWebSite
Add possibility to open a website with a popup 3 cases : Open page GoTo Page OpenCoWebsite
This commit is contained in:
parent
7140637807
commit
8764fe5de5
10 changed files with 282 additions and 544 deletions
13
front/src/Api/Events/OpenCoWebSiteEvent.ts
Normal file
13
front/src/Api/Events/OpenCoWebSiteEvent.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import * as tg from "generic-type-guard";
|
||||
|
||||
|
||||
|
||||
export const isOpenCoWebsite =
|
||||
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 OpenCoWebSiteEvent = tg.GuardedType<typeof isOpenCoWebsite>;
|
Loading…
Add table
Add a link
Reference in a new issue