| Index: client/dom/generated/src/frog/SVGPathSegList.dart
|
| diff --git a/client/dom/generated/src/frog/SVGPathSegList.dart b/client/dom/generated/src/frog/SVGPathSegList.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0ea1397461952e6270243d113fea6c64a8c8b6fc
|
| --- /dev/null
|
| +++ b/client/dom/generated/src/frog/SVGPathSegList.dart
|
| @@ -0,0 +1,23 @@
|
| +
|
| +class SVGPathSegList native "SVGPathSegList" {
|
| +
|
| + int numberOfItems;
|
| +
|
| + SVGPathSeg appendItem(SVGPathSeg newItem) native;
|
| +
|
| + void clear() native;
|
| +
|
| + SVGPathSeg getItem(int index) native;
|
| +
|
| + SVGPathSeg initialize(SVGPathSeg newItem) native;
|
| +
|
| + SVGPathSeg insertItemBefore(SVGPathSeg newItem, int index) native;
|
| +
|
| + SVGPathSeg removeItem(int index) native;
|
| +
|
| + SVGPathSeg replaceItem(SVGPathSeg newItem, int index) native;
|
| +
|
| + var dartObjectLocalStorage;
|
| +
|
| + String get typeName() native;
|
| +}
|
|
|