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

14 lines
383 B
TypeScript
Raw Normal View History

2018-04-02 14:37:54 +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;
}
export declare class CoreProperties extends XmlComponent {
constructor(options: IPropertiesOptions);
}