2018-07-24 15:56:13 -04:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
|
|
|
export interface IBookmarkStartAttributesProperties {
|
2018-11-02 02:51:57 +00:00
|
|
|
readonly id: string;
|
|
|
|
readonly name: string;
|
2018-07-24 15:56:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export class BookmarkStartAttributes extends XmlAttributeComponent<IBookmarkStartAttributesProperties> {
|
2018-11-02 02:51:57 +00:00
|
|
|
protected readonly xmlKeys = {
|
2018-07-24 15:56:13 -04:00
|
|
|
id: "w:id",
|
|
|
|
name: "w:name",
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IBookmarkEndAttributesProperties {
|
2018-11-02 02:51:57 +00:00
|
|
|
readonly id: string;
|
2018-07-24 15:56:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export class BookmarkEndAttributes extends XmlAttributeComponent<IBookmarkEndAttributesProperties> {
|
2018-11-02 02:51:57 +00:00
|
|
|
protected readonly xmlKeys = {
|
2018-07-24 15:56:13 -04:00
|
|
|
id: "w:id",
|
|
|
|
};
|
|
|
|
}
|