openfl
Version:
A fast, productive library for 2D cross-platform development.
24 lines (9 loc) • 340 B
TypeScript
import ErrorEvent from "./ErrorEvent";
declare namespace openfl.events {
export class UncaughtErrorEvent extends ErrorEvent {
static UNCAUGHT_ERROR;
readonly error:any;
constructor (type:string, bubbles?:boolean, cancelable?:boolean, error?:any);
}
}
export default openfl.events.UncaughtErrorEvent;