Files
docx-js/build/src/file/core-properties/properties.d.ts

15 lines
407 B
TypeScript
Raw Normal View History

2018-07-23 10:31:48 +03:00
import { XmlComponent } from "file/xml-components";
export interface IPropertiesOptions {
title?: string;
subject?: string;
creator?: string;
keywords?: string;
description?: string;
lastModifiedBy?: string;
revision?: string;
externalStyles?: string;
}
export declare class CoreProperties extends XmlComponent {
constructor(options: IPropertiesOptions);
}