import {ModuleRegistry} from "../../../../../core/model/ModuleRegistry";
import {EntityPathMarkerDefinition} from "./EntityPathMarkerDefinition";

export class EntityPathStyle {
    public marker_start: EntityPathMarkerDefinition
    public marker_end: EntityPathMarkerDefinition
    public marker_main: EntityPathMarkerDefinition

    public spacing: number

    fromJSON(json: { marker_start: any, marker_end: any, marker_main: any, spacing?: number }, registry: ModuleRegistry): void
}
