import Error from "./Error"; declare namespace openfl.errors { /** * A RangeError exception is thrown when a numeric value is outside the * acceptable range. * * Some situations that cause this exception to be thrown include the * following: * * - Any OpenFL API that expects a depth number is invoked with an invalid depth number. * - Any OpenFL API that expects a frame number is invoked with an invalid frame number. * - Any OpenFL API that expects a layer number is invoked with an invalid layer number. * */ export class RangeError extends Error { constructor(message?: string); } } export default openfl.errors.RangeError;