2018-01-16 00:43:00 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
2018-06-08 16:03:04 +02:00
|
|
|
import { Distance } from "../drawing";
|
2018-01-16 00:43:00 +00:00
|
|
|
|
2018-06-08 16:03:04 +02:00
|
|
|
export interface IInlineAttributes extends Distance {}
|
2018-01-16 00:43:00 +00:00
|
|
|
|
|
|
|
export class InlineAttributes extends XmlAttributeComponent<IInlineAttributes> {
|
|
|
|
protected xmlKeys = {
|
|
|
|
distT: "distT",
|
|
|
|
distB: "distB",
|
|
|
|
distL: "distL",
|
|
|
|
distR: "distR",
|
|
|
|
};
|
|
|
|
}
|