import { Location, Material, MaterialItem } from '@gamepark/rules-api'; export type MaterialFocus

= { materials: Material[]; staticItems: StaticItem[] | Partial[]>>; locations: Location[]; margin?: Margin; scale?: number; highlight?: true; animationTime?: number; }; export type Margin = { top?: number; right?: number; bottom?: number; left?: number; }; export type StaticItem

= { type: M; item: MaterialItem; };