From d55eb7ce9edbdb3540b4aba6d2677ffb4c4e4136 Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Wed, 4 Mar 2026 20:03:55 +0300 Subject: [PATCH] Replace inline import() type annotations with top-level imports --- packages/core/src/kiwi/fig-import.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/core/src/kiwi/fig-import.ts b/packages/core/src/kiwi/fig-import.ts index a0c7574a6..0bb7e34ab 100644 --- a/packages/core/src/kiwi/fig-import.ts +++ b/packages/core/src/kiwi/fig-import.ts @@ -1,3 +1,4 @@ +import type { VariableType, VariableValue } from '../scene-graph' import { SceneGraph } from '../scene-graph' import { guidToString, nodeChangeToProps, sortChildren } from './kiwi-convert' @@ -104,8 +105,8 @@ export function importNodeChanges( }) } - let type: import('../scene-graph').VariableType = 'FLOAT' - let value: import('../scene-graph').VariableValue = 0 + let type: VariableType = 'FLOAT' + let value: VariableValue = 0 const dt = varData.dataType const v = varData.value