Type Alias DucFreeDrawElement

DucFreeDrawElement: _DucElementBase & {
    easing: DucFreeDrawEasing;
    end: DucFreeDrawEnds | null;
    lastCommittedPoint: DucPoint | null;
    points: readonly DucPoint[];
    pressures: readonly number[];
    simulatePressure: boolean;
    size: PrecisionValue;
    smoothing: Percentage;
    start: DucFreeDrawEnds | null;
    streamline: Percentage;
    svgPath: string | null;
    thinning: Percentage;
    type: "freedraw";
}