/** * This namespace provides renderer-specific plugins for exporting content from a renderer. * For instance, these plugins can be used for saving an Image, Canvas element or for exporting the raw image data (pixels). * * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property. * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.WebGLRenderer#plugins}. * @namespace PIXI.extract */ export { default as webgl } from './webgl/WebGLExtract'; export { default as canvas } from './canvas/CanvasExtract';