export interface LineStringData {
    points: {
        x: number;
        y: number;
    }[];
}
