global.d.ts 481 B

1234567891011121314151617181920212223242526
  1. declare namespace GlobalMixins
  2. {
  3. // eslint-disable-next-line @typescript-eslint/no-empty-interface
  4. interface BaseTexture
  5. {
  6. }
  7. // eslint-disable-next-line @typescript-eslint/no-empty-interface
  8. interface Texture
  9. {
  10. }
  11. // eslint-disable-next-line @typescript-eslint/no-empty-interface
  12. interface BaseRenderTexture
  13. {
  14. }
  15. // eslint-disable-next-line @typescript-eslint/no-empty-interface
  16. interface IRendererOptions
  17. {
  18. }
  19. }