docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
12 lines (10 loc) • 347 B
text/typescript
import { XmlAttributeComponent } from "file/xml-components";
export class PicLocksAttributes extends XmlAttributeComponent<{
readonly noChangeAspect?: number;
readonly noChangeArrowheads?: number;
}> {
protected readonly xmlKeys = {
noChangeAspect: "noChangeAspect",
noChangeArrowheads: "noChangeArrowheads",
};
}