lazy-widgets
Version:
Typescript retained mode GUI for the HTML canvas API
16 lines • 649 B
JavaScript
export var BackingMediaEventType;
(function (BackingMediaEventType) {
/**
* The backing media has been loaded. Note that this can fire multiple times
* and there is no "unloaded" event.
*/
BackingMediaEventType["Loaded"] = "loaded";
/** The backing media should be re-painted. */
BackingMediaEventType["Dirty"] = "dirty";
/**
* The backing media was resized. Note that this doesn't necessarily mean
* that the media should be re-painted.
*/
BackingMediaEventType["Resized"] = "resized";
})(BackingMediaEventType || (BackingMediaEventType = {}));
//# sourceMappingURL=BackingMediaEventType.js.map