docx 8.0.3 → 8.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,6 +5,7 @@ export interface DocPropertiesOptions {
5
5
  readonly title: string;
6
6
  }
7
7
  export declare class DocProperties extends XmlComponent {
8
+ private readonly docPropertiesUniqueNumericId;
8
9
  constructor({ name, description, title }?: DocPropertiesOptions);
9
10
  prepForXml(context: IContext): IXmlableObject | undefined;
10
11
  }
@@ -11,6 +11,8 @@ export declare class Numbering extends XmlComponent {
11
11
  private readonly abstractNumberingMap;
12
12
  private readonly concreteNumberingMap;
13
13
  private readonly referenceConfigMap;
14
+ private readonly abstractNumUniqueNumericId;
15
+ private readonly concreteNumUniqueNumericId;
14
16
  constructor(options: INumberingOptions);
15
17
  prepForXml(context: IContext): IXmlableObject | undefined;
16
18
  createConcreteNumberingInstance(reference: string, instance: number): void;
@@ -1,6 +1,7 @@
1
1
  import { XmlComponent } from "../../../file/xml-components";
2
2
  import { ParagraphChild } from "../paragraph";
3
3
  export declare class Bookmark {
4
+ private readonly bookmarkUniqueNumericId;
4
5
  readonly start: BookmarkStart;
5
6
  readonly children: readonly ParagraphChild[];
6
7
  readonly end: BookmarkEnd;