11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
import { XmlAttributeComponent } from '../../xml-components';
|
|
export declare class FootnoteAttributes extends XmlAttributeComponent<{
|
|
readonly type?: string;
|
|
readonly id: number;
|
|
}> {
|
|
protected readonly xmlKeys: {
|
|
type: string;
|
|
id: string;
|
|
};
|
|
}
|