modified git ignore
This commit is contained in:
12
build/file/xml-components/default-attributes.d.ts
vendored
Normal file
12
build/file/xml-components/default-attributes.d.ts
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import { BaseXmlComponent } from "./base";
|
||||
import { IXmlableObject } from "./xmlable-object";
|
||||
export declare type AttributeMap<T> = {
|
||||
[P in keyof T]: string;
|
||||
};
|
||||
export declare abstract class XmlAttributeComponent<T> extends BaseXmlComponent {
|
||||
protected root: T;
|
||||
protected xmlKeys: AttributeMap<T>;
|
||||
constructor(properties: T);
|
||||
prepForXml(): IXmlableObject;
|
||||
set(properties: T): void;
|
||||
}
|
Reference in New Issue
Block a user