Files
docx-js/src/file/drawing/inline/graphic/graphic-data/pic/blip/stretch.ts
2018-01-23 01:33:12 +00:00

15 lines
299 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());
}
}