import { XmlAttributeComponent } from "file/xml-components"; export interface IDocGridAttributesProperties { readonly type?: string; readonly linePitch?: number; } export class DocGridAttributes extends XmlAttributeComponent { protected readonly xmlKeys = { type: "w:type", linePitch: "w:linePitch", }; }