interface SVGPathSegList {
    numberOfItems: number;
    appendItem(newItem): SVGPathSeg;
    clear(): void;
    getItem(index): SVGPathSeg;
    initialize(newItem): SVGPathSeg;
    insertItemBefore(newItem, index): SVGPathSeg;
    removeItem(index): SVGPathSeg;
    replaceItem(newItem, index): SVGPathSeg;
}

Properties

numberOfItems: number

Methods