import Error from "./Error"; declare namespace openfl.errors { /** * A TypeError exception is thrown when the actual type of an operand is * different from the expected type. * */ export class TypeError extends Error { constructor(message?: string); } } export default openfl.errors.TypeError;