@joefitter/docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
14 lines (11 loc) • 392 B
text/typescript
import { XmlAttributeComponent } from "file/xml-components";
export interface IGraphicFrameLockAttributes {
readonly xmlns?: string;
readonly noChangeAspect?: number;
}
export class GraphicFrameLockAttributes extends XmlAttributeComponent<IGraphicFrameLockAttributes> {
protected readonly xmlKeys = {
xmlns: "xmlns:a",
noChangeAspect: "noChangeAspect",
};
}