7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
export interface IXmlableObject extends Object {
|
|
_attr?: {
|
|
[key: string]: string | number | boolean;
|
|
};
|
|
}
|
|
export declare const WORKAROUND3 = "workaround";
|