2018-10-17 09:15:32 +03:00
|
|
|
export interface IXmlAttribute {
|
|
|
|
[key: string]: string | number | boolean;
|
|
|
|
}
|
2017-07-08 20:45:19 +01:00
|
|
|
export interface IXmlableObject extends Object {
|
2018-10-17 09:15:32 +03:00
|
|
|
_attr?: IXmlAttribute;
|
2017-07-08 20:45:19 +01:00
|
|
|
}
|
2018-02-02 01:56:08 +00:00
|
|
|
|
|
|
|
// Needed because of: https://github.com/s-panferov/awesome-typescript-loader/issues/432
|
2018-08-09 23:40:11 +01:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
export const WORKAROUND3 = "";
|