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