Replace inline import() type annotations with top-level imports

This commit is contained in:
Danila Poyarkov 2026-03-04 20:03:55 +03:00
parent 872c53dd9b
commit d55eb7ce9e

View file

@ -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