fix a couple of compiler null warnings

This commit is contained in:
felipe
2017-03-10 14:30:07 +01:00
parent 62911d6e44
commit a89718ea83
2 changed files with 11 additions and 8 deletions

View File

@ -1,8 +1,8 @@
import { XmlAttributeComponent, XmlComponent } from "../xml-components";
interface IIndentAttributesProperties {
left: number;
hanging: number;
left?: number;
hanging?: number;
}
class IndentAttributes extends XmlAttributeComponent<IIndentAttributesProperties> {