LNXSDK/Kha/Tools/macos/std/flash/events/AsyncErrorEvent.hx
2025-01-22 16:18:30 +01:00

8 lines
277 B
Haxe

package flash.events;
extern class AsyncErrorEvent extends ErrorEvent {
var error : flash.errors.Error;
function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?text : String, ?error : flash.errors.Error) : Void;
static final ASYNC_ERROR : String;
}