import { Point } from './Point';
/**
 * 直线或线段
 */
export type Line = [Point, Point];
