12 lines
352 B
TypeScript
12 lines
352 B
TypeScript
![]() |
import { XmlAttributeComponent } from "../../../../../file/xml-components";
|
||
|
export interface IFooterReferenceAttributes {
|
||
|
type: string;
|
||
|
id: string;
|
||
|
}
|
||
|
export declare class FooterReferenceAttributes extends XmlAttributeComponent<IFooterReferenceAttributes> {
|
||
|
protected xmlKeys: {
|
||
|
type: string;
|
||
|
id: string;
|
||
|
};
|
||
|
}
|