Skip to main content
Module

x/docxml/mod.ts>RelationshipsXml

TypeScript library for parsing and building a DOCXML file
Go to Latest
class RelationshipsXml
extends XmlFile
import { RelationshipsXml } from "https://deno.land/x/docxml@5.1.0/mod.ts";

Constructors

new
RelationshipsXml(
location: string,
meta?: RelationshipMeta[],
instances?,
)

Methods

protected
toNode(): Document
add(type: RelationshipType, instance: File): string

Create a new relationship and return the new identifier

addToArchive(archive: Archive): Promise<void>
ensureRelationship<C extends File>(type: RelationshipType, createInstance: () => C): C
find<R extends File = File>(cb: (meta: RelationshipMeta) => boolean): R | null

Find a relationship instance (eg. a OfficeDocument) by its metadata. The metadata would tell you what type of relationship it is.

Get all XmlFile instances related to this one, including self. This helps the system serialize itself back to DOCX fullly. Probably not useful for consumers of the library.

By default only returns the instance itself but no other related instances.

hasType(type: RelationshipType)

Static Methods

fromArchive(archive: Archive, location: string): Promise<Relationships>

Instantiate this class by looking at the DOCX XML for it.