export declare class iNet { /** * Either global variable or required library */ private static iNetGlobal; /** * Returns the full url from the given relative path. * * @param {String} relativePath (required) The given relative path. * * @return {String} The string URL */ static getUrl(relativePath: any): string; /** * Returns full url form given relative path with firm prefix * @param {String} path (required) The URL * @return {String} The string URL */ static getPUrl(path: string): string; /** * Returns the SSO redirect url from the given url path. * * @param {String} url (required) The given url. * @param {String} app (option) The given application. * * @return {String} The string SSO redirect URL */ static getSSOUrl(url: string, app?: string): string; /** * Gets the username of user logged */ static getUserName(): string; /** * Gets the displayName of user logged */ static getDisplayName(): string; /** * Gets the url of file server */ static getFileServer(): string; /** * Gets the image folder path of module inside cloud */ static getImageFolder(): string; /** * Gets the prefix of server */ static getPrefix(): string; /** * Checks if inet layout is enabled */ static isEnableLayout(): boolean; /** * Gets the id of organization */ static getOrganId(): string; /** * Encodes an Object, Array or other value. * @param {Object} o The variable to encode. * @returns {String} The JSON string */ static encodeJSON(o: any): string; /** * Decodes (parses) a JSON string to an object. * @param {String} src The JSON string. * @returns {Object} The resulting object */ static decodeJSON(src: string): any; /** * Gets the plugin manager */ static getPluginManager(): any; /** * Gets the query param from url */ static getParam(param: string): string; /** * Gets the media path of file server */ static getMediaPath(): string; /** * The instances of global object */ static getInstances(): any; }