modified git ignore
This commit is contained in:
31
build/file/core-properties/components.d.ts
vendored
Normal file
31
build/file/core-properties/components.d.ts
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
import { XmlComponent } from "../../file/xml-components";
|
||||
export declare class Title extends XmlComponent {
|
||||
constructor(value: string);
|
||||
}
|
||||
export declare class Subject extends XmlComponent {
|
||||
constructor(value: string);
|
||||
}
|
||||
export declare class Creator extends XmlComponent {
|
||||
constructor(value: string);
|
||||
}
|
||||
export declare class Keywords extends XmlComponent {
|
||||
constructor(value: string);
|
||||
}
|
||||
export declare class Description extends XmlComponent {
|
||||
constructor(value: string);
|
||||
}
|
||||
export declare class LastModifiedBy extends XmlComponent {
|
||||
constructor(value: string);
|
||||
}
|
||||
export declare class Revision extends XmlComponent {
|
||||
constructor(value: string);
|
||||
}
|
||||
export declare abstract class DateComponent extends XmlComponent {
|
||||
protected getCurrentDate(): string;
|
||||
}
|
||||
export declare class Created extends DateComponent {
|
||||
constructor();
|
||||
}
|
||||
export declare class Modified extends DateComponent {
|
||||
constructor();
|
||||
}
|
1
build/file/core-properties/index.d.ts
vendored
Normal file
1
build/file/core-properties/index.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export * from "./properties";
|
13
build/file/core-properties/properties.d.ts
vendored
Normal file
13
build/file/core-properties/properties.d.ts
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
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);
|
||||
}
|
Reference in New Issue
Block a user