11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
import { XmlAttributeComponent } from '../xml-components';
|
|
export declare class CustomPropertiesAttributes extends XmlAttributeComponent<{
|
|
readonly xmlns: string;
|
|
readonly vt: string;
|
|
}> {
|
|
protected readonly xmlKeys: {
|
|
xmlns: string;
|
|
vt: string;
|
|
};
|
|
}
|