UNPKG

@antv/layout

Version:
17 lines (14 loc) 324 B
import { Point } from '../types/point.js'; /** * Viewport configuration such as width, height and center point. */ declare const normalizeViewport: (options: { width?: number; height?: number; center?: Point; }) => { width: number; height: number; center: Point; }; export { normalizeViewport };