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

14 lines
365 B
TypeScript
Raw Normal View History

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