UNPKG

@tracespace/plotter

Version:

Plot @tracespace/parser ASTs into image trees.

8 lines (7 loc) 284 B
import type { GerberTree, UnitsType, Format, ZeroSuppression } from '@tracespace/parser'; export interface PlotOptions { units: UnitsType; coordinateFormat: Format; zeroSuppression: ZeroSuppression; } export declare function getPlotOptions(tree: GerberTree): PlotOptions;