From 67488d7c9586fd9518a6f60e09f08e84698fb500 Mon Sep 17 00:00:00 2001 From: Davide Tantillo Date: Wed, 12 Mar 2025 10:36:48 +0100 Subject: [PATCH] [ts][phaser] Fix wrong type definition. --- spine-ts/spine-phaser/src/mixins.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-ts/spine-phaser/src/mixins.ts b/spine-ts/spine-phaser/src/mixins.ts index 83c2dc0d1..7f12789b0 100644 --- a/spine-ts/spine-phaser/src/mixins.ts +++ b/spine-ts/spine-phaser/src/mixins.ts @@ -59,7 +59,7 @@ export function createMixin< }; } -type ComputedSizeMixin = Mixin; +type ComputedSizeMixin = Mixin; export const ComputedSizeMixin: ComputedSizeMixin = createMixin(ComputedSize); type DepthMixin = Mixin;