Skip to content

Commit

Permalink
Fix deprecation docs for global Settings mixins (#9124)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtimebuddy committed Feb 1, 2023
1 parent 77114b9 commit befd6ad
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion packages/canvas-mesh/global.d.ts
Expand Up @@ -24,7 +24,7 @@ declare namespace GlobalMixins

interface Settings
{
/** @deprecated */
/** @deprecated since 7.1.0 */
MESH_CANVAS_PADDING: number;
}
}
28 changes: 14 additions & 14 deletions packages/core/global.d.ts
Expand Up @@ -50,33 +50,33 @@ declare namespace GlobalMixins

interface Settings
{
/** @deprecated */
/** @deprecated since 7.1.0 */
FILTER_RESOLUTION: number;
/** @deprecated */
/** @deprecated since 7.1.0 */
FILTER_MULTISAMPLE: import('@pixi/constants').MSAA_QUALITY;
/** @deprecated */
/** @deprecated since 7.1.0 */
SPRITE_MAX_TEXTURES: number;
/** @deprecated */
/** @deprecated since 7.1.0 */
SPRITE_BATCH_SIZE: number;
/** @deprecated */
/** @deprecated since 7.1.0 */
MIPMAP_TEXTURES: import('@pixi/constants').MIPMAP_MODES;
/** @deprecated */
/** @deprecated since 7.1.0 */
ANISOTROPIC_LEVEL: number;
/** @deprecated */
/** @deprecated since 7.1.0 */
WRAP_MODE: import('@pixi/constants').WRAP_MODES;
/** @deprecated */
/** @deprecated since 7.1.0 */
SCALE_MODE: import('@pixi/constants').SCALE_MODES;
/** @deprecated */
/** @deprecated since 7.1.0 */
CAN_UPLOAD_SAME_BUFFER: boolean;
/** @deprecated */
/** @deprecated since 7.1.0 */
PRECISION_VERTEX: import('@pixi/constants').PRECISION,
/** @deprecated */
/** @deprecated since 7.1.0 */
PRECISION_FRAGMENT: import('@pixi/constants').PRECISION,
/** @deprecated */
/** @deprecated since 7.1.0 */
GC_MODE: import('@pixi/constants').GC_MODES,
/** @deprecated */
/** @deprecated since 7.1.0 */
GC_MAX_IDLE: number,
/** @deprecated */
/** @deprecated since 7.1.0 */
GC_MAX_CHECK_COUNT: number,

STRICT_TEXTURE_CACHE: boolean;
Expand Down
1 change: 1 addition & 0 deletions packages/display/global.d.ts
Expand Up @@ -20,6 +20,7 @@ declare namespace GlobalMixins

interface Settings
{
/** @deprecated since 7.1.0 */
SORTABLE_CHILDREN: boolean;
}
}
2 changes: 1 addition & 1 deletion packages/prepare/global.d.ts
Expand Up @@ -7,7 +7,7 @@ declare namespace GlobalMixins

interface Settings
{
/** @deprecated */
/** @deprecated since 7.1.0 */
UPLOADS_PER_FRAME: number;
}
}
1 change: 1 addition & 0 deletions packages/ticker/global.d.ts
Expand Up @@ -15,6 +15,7 @@ declare namespace GlobalMixins

interface Settings
{
/** @deprecated since 7.1.0 */
TARGET_FPMS: number;
}
}

0 comments on commit befd6ad

Please sign in to comment.