blob: 48f8a0fdceb6c24b2dfdfbd2c53439e65054aa7f (
plain)
1
2
3
4
5
6
7
8
9
|
dictionary PaintOptions {
DOMString? fillPattern = "black";
DOMString? strokePattern = null;
Point position;
};
dictionary WetPaintOptions : PaintOptions {
float hydrometry;
};
|