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

15 lines
314 B
TypeScript
Raw Normal View History

import { XmlComponent } from "@file/xml-components";
class FillRectangle extends XmlComponent {
2022-08-31 07:52:27 +01:00
public constructor() {
super("a:fillRect");
}
}
export class Stretch extends XmlComponent {
2022-08-31 07:52:27 +01:00
public constructor() {
super("a:stretch");
this.root.push(new FillRectangle());
}
}