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

18 lines
244 B
TypeScript
Raw Normal View History

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