import type { Graph } from '../runtime/graph'; import type { ElementDatum } from './data'; /** * 样式计算迭代上下文 * * Style iteration context */ export type StyleIterationContext = { datum: ElementDatum; graph: Graph; };