• Normalizes an outline object into a simple line symbol properties object.

    Parameters

    • Optionaloutline: {
          color?: number[];
          type?: string;
          width?: number;
      }

      The outline properties to normalize.

      • Optionalcolor?: number[]

        The color of the outline.

      • Optionaltype?: string

        The type of the outline.

      • Optionalwidth?: number

        The width of the outline.

    Returns {
        color: number[];
        type: "simple-line";
        width: number;
    }

    An object containing type, color, and width for a SimpleLineSymbol.

    • color: number[]
    • type: "simple-line"
    • width: number