Files
docx-js/src/file/drawing/inline/graphic/graphic-data/pic/blip/stretch.ts
2022-08-31 07:52:27 +01:00

15 lines
314 B
TypeScript

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