10 lines
321 B
TypeScript
10 lines
321 B
TypeScript
![]() |
import { XmlAttributeComponent } from "../../file/xml-components";
|
||
|
export interface IRelationshipsAttributesProperties {
|
||
|
xmlns: string;
|
||
|
}
|
||
|
export declare class RelationshipsAttributes extends XmlAttributeComponent<IRelationshipsAttributesProperties> {
|
||
|
protected xmlKeys: {
|
||
|
xmlns: string;
|
||
|
};
|
||
|
}
|