UNPKG

lbrn2-to-svg

Version:

A library and CLI to parse LightBurn LBRN2 files and convert them to SVG.

8 lines (7 loc) 197 B
import type { Lbrn2Shape } from "./lbrn2Types"; export declare function getTransformedBounds(shape: Lbrn2Shape): { minX: number; minY: number; maxX: number; maxY: number; } | null;