AVPlayStateEvent.hx 348 B

12345678
  1. package flash.events;
  2. extern class AVPlayStateEvent extends Event {
  3. @:flash.property var playState(get,never) : flash.media.AVPlayState;
  4. function new(?type : String, bubbles : Bool = false, cancelable : Bool = false, inState : Int = 0) : Void;
  5. private function get_playState() : flash.media.AVPlayState;
  6. static final AV_PLAY_STATE : String;
  7. }