Signal K
    Preparing search index...

    Interface CourseInfo

    interface CourseInfo {
        activeRoute: null | ActiveRoute;
        arrivalCircle: number;
        nextPoint:
            | null
            | { position: Position; type: CoursePointType; href?: string };
        previousPoint:
            | null
            | { position: Position; type: CoursePointType; href?: string };
        startTime: null | string;
        targetArrivalTime: null | string;
    }
    Index

    Properties

    activeRoute: null | ActiveRoute
    arrivalCircle: number
    nextPoint: null | { position: Position; type: CoursePointType; href?: string }
    previousPoint:
        | null
        | { position: Position; type: CoursePointType; href?: string }
    startTime: null | string
    targetArrivalTime: null | string