Files
lime/externs/air/flash/events/LocationChangeEvent.hx
2017-08-24 12:50:13 -07:00

9 lines
280 B
Haxe

package flash.events;
extern class LocationChangeEvent extends Event {
var location : String;
function new(type : String, bubbles : Bool=false, cancelable : Bool=false, ?location : String) : Void;
static var LOCATION_CHANGE : String;
static var LOCATION_CHANGING : String;
}