14 lines
306 B
TypeScript
14 lines
306 B
TypeScript
import { ImageParagraph, PictureRun } from "../paragraph";
|
|
|
|
export class Image {
|
|
constructor(private readonly paragraph: ImageParagraph) {}
|
|
|
|
public get Paragraph(): ImageParagraph {
|
|
return this.paragraph;
|
|
}
|
|
|
|
public get Run(): PictureRun {
|
|
return this.paragraph.Run;
|
|
}
|
|
}
|