lazy-widgets
Version:
Typescript retained mode GUI for the HTML canvas API
15 lines (14 loc) • 441 B
TypeScript
export declare enum BackingMediaEventType {
/**
* The backing media has been loaded. Note that this can fire multiple times
* and there is no "unloaded" event.
*/
Loaded = "loaded",
/** The backing media should be re-painted. */
Dirty = "dirty",
/**
* The backing media was resized. Note that this doesn't necessarily mean
* that the media should be re-painted.
*/
Resized = "resized"
}