added style components

This commit is contained in:
Dolan Miu
2016-04-09 04:27:49 +01:00
parent bf928393b5
commit aed59754cc
7 changed files with 68 additions and 5 deletions

View File

@ -0,0 +1,16 @@
import {XmlComponent} from "./";
export abstract class BaseAttributes implements XmlComponent {
private _attr: Object;
xmlKeys = {};
constructor(xmlKeys: Object, properties?: any) {
this._attr = properties
if (!properties) {
this._attr = {};
}
this._attr["xmlKeys"] = this.xmlKeys;
}
}