declare namespace openfl.display { /** * The IBitmapDrawable interface is implemented by objects that can be passed * as the source parameter of the `draw()` method of the BitmapData class. * These objects are of type BitmapData or DisplayObject. * * @see `openfl.display.BitmapData.draw()` * @see `openfl.display.BitmapData` * @see `openfl.display.DisplayObject` * */ export interface IBitmapDrawable { } } type IBitmapDrawable = openfl.display.IBitmapDrawable; export default IBitmapDrawable;