9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import { XmlComponent } from "../../../xml-components";
|
|
|
|
export class Drawing extends XmlComponent {
|
|
|
|
constructor(imagePath: string) {
|
|
super("w:drawing");
|
|
}
|
|
}
|