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

14 lines
392 B
TypeScript
Raw Normal View History

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