Files
docx-js/src/file/drawing/graphic-frame/graphic-frame-locks/graphic-frame-lock-attributes.ts

12 lines
319 B
TypeScript
Raw Normal View History

import { XmlAttributeComponent } from "@file/xml-components";
2018-01-11 01:47:09 +00:00
2021-03-15 00:11:39 +00:00
export class GraphicFrameLockAttributes extends XmlAttributeComponent<{
readonly xmlns?: string;
readonly noChangeAspect?: number;
2021-03-15 00:11:39 +00:00
}> {
protected readonly xmlKeys = {
2018-01-11 01:47:09 +00:00
xmlns: "xmlns:a",
noChangeAspect: "noChangeAspect",
};
}