refactor: move components from /drawing/inline to /drawing

- they will be used for other positioning element (floating)
This commit is contained in:
Igor Bulovski
2018-06-08 07:50:23 +02:00
parent 548fe3c864
commit ac40a40ec0
42 changed files with 7 additions and 7 deletions

View File

@ -0,0 +1,15 @@
import { XmlAttributeComponent } from "file/xml-components";
export interface IDocPropertiesAttributes {
id?: number;
name?: string;
descr?: string;
}
export class DocPropertiesAttributes extends XmlAttributeComponent<IDocPropertiesAttributes> {
protected xmlKeys = {
id: "id",
name: "name",
descr: "descr",
};
}