import { XmlAttributeComponent } from "file/xml-components"; export interface IBookmarkStartAttributesProperties { readonly id: string; readonly name: string; } export class BookmarkStartAttributes extends XmlAttributeComponent { protected readonly xmlKeys = { id: "w:id", name: "w:name", }; } export interface IBookmarkEndAttributesProperties { readonly id: string; } export class BookmarkEndAttributes extends XmlAttributeComponent { protected readonly xmlKeys = { id: "w:id", }; }