File size: 747 Bytes
46c7a16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
declare global {
    interface Window {
        openApp(url: string): void;
        searchApps(val: string): void;
        setTheme(val: string): void;
        setProxy(val: string): void;
        transport(val: string): void;
        changeTitle(val: string): void;
        changeFavicon(val: string): void;
        searchGames(val: string): void;
        fullScreenGame(val: string): void;
        loadProxyScripts(): Promise;
        setTransport(transport: string): Promise;
        loadMobileNav(): void;
        closeMobileNav(): void;
        createLink(): void;
        exitIframe(): void;
        refreshIframe(): void;
        setTitle(): void;
        __uv: any;
        __get$ProxyUrl: any;
        $scramjet: any;
    }
}

export {};