Files
docx-js/src/file/drawing/effect-extent/effect-extent-attributes.ts

18 lines
409 B
TypeScript
Raw Normal View History

import { XmlAttributeComponent } from "file/xml-components";
export interface IEffectExtentAttributes {
readonly b?: number;
readonly l?: number;
readonly r?: number;
readonly t?: number;
}
export class EffectExtentAttributes extends XmlAttributeComponent<IEffectExtentAttributes> {
protected readonly xmlKeys = {
b: "b",
l: "l",
r: "r",
t: "t",
};
}