unit React_swf;

interface

//"react-swf"


ReactSWF: Jtype of;
//rswf

type
  JReactSWF = class external 'ReactSWF'(J__React.Component {JProps, JState} )
    function render: J__React.DOMElement{<Variant>}
    function getFPDOMNode: JNode
    function getFPVersion: String
    function isFPVersionSupported(versionString: String): Boolean
  end;

  JState = class external
  end;

  JProps = class external
    src: String;
    pluginspage: String; // nullable
    width: Float; // nullable
    height: Float; // nullable
    id: String; // nullable
    play: Boolean; // nullable
    loop: Boolean; // nullable
    menu: Boolean; // nullable
    quality: String; // nullable
    scale: String; // nullable
    align: String; // nullable
    salign: String; // nullable
    wmode: String; // nullable
    bgcolor: String; // nullable
    base: String; // nullable
    allowFullScreen: Boolean; // nullable
    fullScreenAspectRatio: String; // nullable
    flashvars: Variant {JObject or String}; // nullable
  end;


