docx-rs/docx-wasm/js/shading.ts

14 lines
199 B
TypeScript
Raw Normal View History

export class Shading {
_type: string = "clear";
_color: string = "auto";
_fill: string = "FFFFFF";
color(c: string) {
this._color = c;
}
fill(c: string) {
this._fill = c;
}
}