9 lines
275 B
Haxe
9 lines
275 B
Haxe
package flash.events;
|
|
|
|
extern class SQLErrorEvent extends ErrorEvent
|
|
{
|
|
var error(default, never):flash.errors.SQLError;
|
|
function new(type:String, bubbles:Bool = false, cancelable:Bool = false, ?error:flash.errors.SQLError):Void;
|
|
static var ERROR(default, never):String;
|
|
}
|