import Error from "./Error"; declare namespace openfl.errors { /** * The IOError exception is thrown when some type of input or output failure * occurs. For example, an IOError exception is thrown if a read/write * operation is attempted on a socket that has not connected or that has * become disconnected. * */ export class IOError extends Error { /** * Creates a new IOError object. * * @param message A string associated with the error object. * */ constructor(message?: string); } } export default openfl.errors.IOError;