Merge pull request #1601 from AdaEniac/patch-3

Update hyperlink.ts
This commit is contained in:
Dolan
2022-08-25 01:54:31 +01:00
committed by GitHub

View File

@ -38,6 +38,8 @@ export class InternalHyperlink extends ConcreteHyperlink {
} }
} }
export class ExternalHyperlink { export class ExternalHyperlink extends XmlComponent {
constructor(public readonly options: { readonly children: ParagraphChild[]; readonly link: string }) {} constructor(public readonly options: { readonly children: ParagraphChild[]; readonly link: string }) {
super("w:externalHyperlink");
}
} }