11 lines
315 B
TypeScript
11 lines
315 B
TypeScript
import { XmlAttributeComponent } from '../../../xml-components';
|
|
export declare class GraphicFrameLockAttributes extends XmlAttributeComponent<{
|
|
readonly xmlns?: string;
|
|
readonly noChangeAspect?: number;
|
|
}> {
|
|
protected readonly xmlKeys: {
|
|
xmlns: string;
|
|
noChangeAspect: string;
|
|
};
|
|
}
|