2018-01-16 00:43:00 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
2018-06-09 23:49:01 +01:00
|
|
|
import { IDistance } from "../drawing";
|
2018-01-16 00:43:00 +00:00
|
|
|
|
2018-06-09 23:49:01 +01:00
|
|
|
// tslint:disable-next-line:no-empty-interface
|
|
|
|
export interface IInlineAttributes extends IDistance {}
|
2018-01-16 00:43:00 +00:00
|
|
|
|
|
|
|
export class InlineAttributes extends XmlAttributeComponent<IInlineAttributes> {
|
|
|
|
protected xmlKeys = {
|
|
|
|
distT: "distT",
|
|
|
|
distB: "distB",
|
|
|
|
distL: "distL",
|
|
|
|
distR: "distR",
|
|
|
|
};
|
|
|
|
}
|