supervision-js
    Preparing search index...

    Interface BasePolylineStyleOptions

    interface BasePolylineStyleOptions {
        stroke?: DetectionStyleValue<
            Partial<StrokeStyle>
            | null,
            AnnotationStyleContext,
        >;
        shadowStroke?: DetectionStyleValue<
            Partial<StrokeStyle>
            | null,
            AnnotationStyleContext,
        >;
        shouldRender?: DetectionStylePredicate<AnnotationStyleContext>;
    }
    Index
    stroke?: DetectionStyleValue<
        Partial<StrokeStyle>
        | null,
        AnnotationStyleContext,
    >
    shadowStroke?: DetectionStyleValue<
        Partial<StrokeStyle>
        | null,
        AnnotationStyleContext,
    >

    Contrast stroke drawn under the path. An absent value draws no shadow; the canonical default polyline style supplies one.

    shouldRender?: DetectionStylePredicate<AnnotationStyleContext>