Files
docx-js/src/file/drawing/inline/graphic/graphic-data/pic/blip/stretch.ts

17 lines
314 B
TypeScript
Raw Normal View History

2017-12-19 23:13:11 +00:00
import { XmlComponent } from "../../../../../../xml-components";
class FillRectangle extends XmlComponent {
constructor() {
super("a:fillRect");
}
}
export class Stretch extends XmlComponent {
constructor() {
super("a:stretch");
this.root.push(new FillRectangle());
}
}