package org.tamina.events.html;

/**
 * File API events
 * <br>
 * DOM Events are sent to notify code of interesting things that have taken place.
 * @class FileEvent
 * @static
 */
@deprecated
class FileEvent {

    /**
     * The change event is fired for input, select, and textarea elements when a change to the element's value is committed by the user. Unlike the input event, the change event is not necessarily fired for each change to an element's value.
     * @property CHANGE
     * @type String
     * @static
     * @readOnly
     */
    static public inline var CHANGE:String='change';
}
