2017-12-19 23:13:11 +00:00
|
|
|
import { XmlComponent } from "../../../../../../xml-components";
|
2017-03-13 00:33:59 +00:00
|
|
|
|
|
|
|
class FillRectangle extends XmlComponent {
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super("a:fillRect");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Stretch extends XmlComponent {
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super("a:stretch");
|
|
|
|
this.root.push(new FillRectangle());
|
|
|
|
}
|
|
|
|
}
|