1 | declare namespace GlobalMixins
|
2 | {
|
3 | // eslint-disable-next-line @typescript-eslint/no-empty-interface
|
4 | interface BaseTexture
|
5 | {
|
6 |
|
7 | }
|
8 |
|
9 | // eslint-disable-next-line @typescript-eslint/no-empty-interface
|
10 | interface Texture
|
11 | {
|
12 |
|
13 | }
|
14 |
|
15 | // eslint-disable-next-line @typescript-eslint/no-empty-interface
|
16 | interface BaseRenderTexture
|
17 | {
|
18 |
|
19 | }
|
20 |
|
21 | // eslint-disable-next-line @typescript-eslint/no-empty-interface
|
22 | interface IRendererOptions
|
23 | {
|
24 |
|
25 | }
|
26 |
|
27 | // eslint-disable-next-line @typescript-eslint/no-empty-interface
|
28 | interface IRenderableObject
|
29 | {
|
30 |
|
31 | }
|
32 |
|
33 | // eslint-disable-next-line @typescript-eslint/no-empty-interface
|
34 | interface Renderer
|
35 | {
|
36 |
|
37 | }
|
38 |
|
39 | // eslint-disable-next-line @typescript-eslint/no-empty-interface
|
40 | interface IRenderer
|
41 | {
|
42 |
|
43 | }
|
44 |
|
45 | // eslint-disable-next-line @typescript-eslint/no-empty-interface
|
46 | interface IRendererPlugins
|
47 | {
|
48 |
|
49 | }
|
50 |
|
51 | interface Settings
|
52 | {
|
53 | /** @deprecated since 7.1.0 */
|
54 | FILTER_RESOLUTION: number;
|
55 | /** @deprecated since 7.1.0 */
|
56 | FILTER_MULTISAMPLE: import('@pixi/constants').MSAA_QUALITY;
|
57 | /** @deprecated since 7.1.0 */
|
58 | SPRITE_MAX_TEXTURES: number;
|
59 | /** @deprecated since 7.1.0 */
|
60 | SPRITE_BATCH_SIZE: number;
|
61 | /** @deprecated since 7.1.0 */
|
62 | MIPMAP_TEXTURES: import('@pixi/constants').MIPMAP_MODES;
|
63 | /** @deprecated since 7.1.0 */
|
64 | ANISOTROPIC_LEVEL: number;
|
65 | /** @deprecated since 7.1.0 */
|
66 | WRAP_MODE: import('@pixi/constants').WRAP_MODES;
|
67 | /** @deprecated since 7.1.0 */
|
68 | SCALE_MODE: import('@pixi/constants').SCALE_MODES;
|
69 | /** @deprecated since 7.1.0 */
|
70 | CAN_UPLOAD_SAME_BUFFER: boolean;
|
71 | /** @deprecated since 7.1.0 */
|
72 | PRECISION_VERTEX: import('@pixi/constants').PRECISION,
|
73 | /** @deprecated since 7.1.0 */
|
74 | PRECISION_FRAGMENT: import('@pixi/constants').PRECISION,
|
75 | /** @deprecated since 7.1.0 */
|
76 | GC_MODE: import('@pixi/constants').GC_MODES,
|
77 | /** @deprecated since 7.1.0 */
|
78 | GC_MAX_IDLE: number,
|
79 | /** @deprecated since 7.1.0 */
|
80 | GC_MAX_CHECK_COUNT: number,
|
81 |
|
82 | RENDER_OPTIONS: import('@pixi/core').IRendererOptions;
|
83 | STRICT_TEXTURE_CACHE: boolean;
|
84 | PREFER_ENV: import('@pixi/constants').ENV;
|
85 | }
|
86 | }
|