From 068eec3f8dd738b441935724d3c9ea7a1035ef23 Mon Sep 17 00:00:00 2001 From: Robbie Date: Fri, 3 Jan 2025 01:11:17 -0700 Subject: [PATCH] fix(types): update resizeTo ref type --- src/typedefs/ApplicationProps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/typedefs/ApplicationProps.ts b/src/typedefs/ApplicationProps.ts index ff0dffba..1150574f 100644 --- a/src/typedefs/ApplicationProps.ts +++ b/src/typedefs/ApplicationProps.ts @@ -38,7 +38,7 @@ export interface BaseApplicationProps onInit?: (app: Application) => void /** @description An element (or React ref) to which the application's canvas will be resized. */ - resizeTo?: HTMLElement | Window | RefObject + resizeTo?: HTMLElement | Window | RefObject } export type ApplicationProps = BaseApplicationProps & Partial<{