docx 7.1.1 → 7.1.2

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.
@@ -13,7 +13,7 @@ export interface IPropertiesOptions {
13
13
  readonly keywords?: string;
14
14
  readonly description?: string;
15
15
  readonly lastModifiedBy?: string;
16
- readonly revision?: string;
16
+ readonly revision?: number;
17
17
  readonly externalStyles?: string;
18
18
  readonly styles?: IStylesOptions;
19
19
  readonly numbering?: INumberingOptions;
@@ -1,6 +1,6 @@
1
1
  import { XmlAttributeComponent } from "../../../file/xml-components";
2
2
  export declare class BookmarkStartAttributes extends XmlAttributeComponent<{
3
- readonly id: string;
3
+ readonly id: number;
4
4
  readonly name: string;
5
5
  }> {
6
6
  protected readonly xmlKeys: {
@@ -9,7 +9,7 @@ export declare class BookmarkStartAttributes extends XmlAttributeComponent<{
9
9
  };
10
10
  }
11
11
  export declare class BookmarkEndAttributes extends XmlAttributeComponent<{
12
- readonly id: string;
12
+ readonly id: number;
13
13
  }> {
14
14
  protected readonly xmlKeys: {
15
15
  id: string;
@@ -10,8 +10,8 @@ export declare class Bookmark {
10
10
  });
11
11
  }
12
12
  export declare class BookmarkStart extends XmlComponent {
13
- constructor(id: string, linkId: string);
13
+ constructor(id: string, linkId: number);
14
14
  }
15
15
  export declare class BookmarkEnd extends XmlComponent {
16
- constructor(linkId: string);
16
+ constructor(linkId: number);
17
17
  }