/** @module GameFS */ export default class GameFS { maps: { [idk: string]: any; }; gameId: string; constructor(gameId: string, redirectMap?: string); /** * Converts a GameFS path (like '/mygame.swf') into a full url, that can be downloaded over the internet. * Important! Do not save or otherwise persist (bigdb, cookies, etc) the returned url, since the url will change over time. * @param path The path of the file in the GameFS, including the initial slash. Examples: '/mygame.swf' or '/characters/bob.jpg' * @param secure If true, this method returns a secure (https) url. * @returns An url that can be used to download the resource over the internet. */ getUrl(path: string, secure: boolean): string; }