Files
docx-js/src/file/drawing/graphic-frame/graphic-frame-locks/graphic-frame-lock-attributes.ts
Dolan Miu 982d923553 Improve import alias
@file/ and @export/ instead of file/ and export/ etc
2022-06-26 23:26:42 +01:00

12 lines
319 B
TypeScript

import { XmlAttributeComponent } from "@file/xml-components";
export class GraphicFrameLockAttributes extends XmlAttributeComponent<{
readonly xmlns?: string;
readonly noChangeAspect?: number;
}> {
protected readonly xmlKeys = {
xmlns: "xmlns:a",
noChangeAspect: "noChangeAspect",
};
}