Serenity Operating System
1#import <Geometry/DOMMatrixReadOnly.idl>
2#import <HTML/Canvas/CanvasPath.idl>
3
4// https://html.spec.whatwg.org/multipage/canvas.html#path2d
5[Exposed=(Window,Worker)]
6interface Path2D {
7 constructor(optional (Path2D or DOMString) path);
8
9 undefined addPath(Path2D path, optional DOMMatrix2DInit transform = {});
10};
11
12Path2D includes CanvasPath;