added properties

This commit is contained in:
Dolan Miu
2016-04-03 20:00:30 +01:00
parent 9b6f6082f5
commit 4d8e443962
6 changed files with 240 additions and 5 deletions

View File

@ -18,6 +18,12 @@ interface DocumentAttributesProperties {
wne?: string;
wps?: string;
Ignorable?: string;
cp?: string;
dc?: string;
dcterms?: string;
dcmitype?: string;
xsi?: string;
type?: string;
}
export class DocumentAttributes implements XmlComponent {
@ -40,7 +46,13 @@ export class DocumentAttributes implements XmlComponent {
wpi: 'xmlns:wpi',
wne: 'xmlns:wne',
wps: 'xmlns:wps',
Ignorable: 'mc:Ignorable'
Ignorable: 'mc:Ignorable',
cp: 'xmlns:cp',
dc: 'xmlns:dc',
dcterms: 'xmlns:dcterms',
dcmitype: 'xmlns:dcmitype',
xsi: 'xmlns:xsi',
type: 'xsi:type'
};
constructor(properties?: DocumentAttributesProperties) {