Files
docx-js/build/file/drawing/inline/graphic-frame/graphic-frame-locks/graphic-frame-lock-attributes.d.ts
2018-04-02 14:37:54 +03:00

12 lines
383 B
TypeScript

import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IGraphicFrameLockAttributes {
xmlns?: string;
noChangeAspect?: number;
}
export declare class GraphicFrameLockAttributes extends XmlAttributeComponent<IGraphicFrameLockAttributes> {
protected xmlKeys: {
xmlns: string;
noChangeAspect: string;
};
}