UNPKG

pixi.js

Version:

<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">

82 lines (57 loc) 1.66 kB
declare global { namespace PixiMixins { // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface ICanvas { } interface RendererOptions { resolution?: number; failIfMajorPerformanceCaveat?: boolean; roundPixels?: boolean; } // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface WebGLOptions { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface WebGPUOptions { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface RendererSystems { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface WebGLSystems { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface WebGPUSystems { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface CanvasSystems { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface RendererPipes { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface WebGLPipes { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface WebGPUPipes { } // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface CanvasPipes { } } } export {};