Files
docx-js/build/file/document/body/section-properties/doc-grid/doc-grid-attributes.d.ts
2018-04-02 14:37:54 +03:00

10 lines
321 B
TypeScript

import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IDocGridAttributesProperties {
linePitch?: number;
}
export declare class DocGridAttributes extends XmlAttributeComponent<IDocGridAttributesProperties> {
protected xmlKeys: {
linePitch: string;
};
}