15 lines
418 B
TypeScript
15 lines
418 B
TypeScript
import { XmlAttributeComponent } from "file/xml-components";
|
|
import { IDistance } from "../drawing";
|
|
|
|
// tslint:disable-next-line:no-empty-interface
|
|
export interface IInlineAttributes extends IDistance {}
|
|
|
|
export class InlineAttributes extends XmlAttributeComponent<IInlineAttributes> {
|
|
protected xmlKeys = {
|
|
distT: "distT",
|
|
distB: "distB",
|
|
distL: "distL",
|
|
distR: "distR",
|
|
};
|
|
}
|