Files
docx-js/src/file/drawing/inline/graphic/graphic-data/pic/blip/stretch.ts
2017-12-30 20:25:16 +00:00

17 lines
301 B
TypeScript

import { XmlComponent } from "file/xml-components";
class FillRectangle extends XmlComponent {
constructor() {
super("a:fillRect");
}
}
export class Stretch extends XmlComponent {
constructor() {
super("a:stretch");
this.root.push(new FillRectangle());
}
}