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