14 lines
199 B
TypeScript
14 lines
199 B
TypeScript
|
export class Shading {
|
||
|
_type: string = "clear";
|
||
|
_color: string = "auto";
|
||
|
_fill: string = "FFFFFF";
|
||
|
|
||
|
color(c: string) {
|
||
|
this._color = c;
|
||
|
}
|
||
|
|
||
|
fill(c: string) {
|
||
|
this._fill = c;
|
||
|
}
|
||
|
}
|