modified git ignore

This commit is contained in:
ilmar
2018-04-02 14:37:54 +03:00
parent ee721ffbec
commit 80f09ac10b
149 changed files with 83578 additions and 1 deletions

6
build/file/document/body/body.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
import { XmlComponent } from "../../../file/xml-components";
import { SectionPropertiesOptions } from "./section-properties/section-properties";
export declare class Body extends XmlComponent {
constructor(sectionPropertiesOptions?: SectionPropertiesOptions);
push(component: XmlComponent): void;
}

1
build/file/document/body/index.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from "./body";

View File

@ -0,0 +1,9 @@
import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IColumnsAttributes {
space?: number;
}
export declare class ColumnsAttributes extends XmlAttributeComponent<IColumnsAttributes> {
protected xmlKeys: {
space: string;
};
}

View File

@ -0,0 +1,4 @@
import { XmlComponent } from "../../../../../file/xml-components";
export declare class Columns extends XmlComponent {
constructor(space: number);
}

View File

@ -0,0 +1,9 @@
import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IDocGridAttributesProperties {
linePitch?: number;
}
export declare class DocGridAttributes extends XmlAttributeComponent<IDocGridAttributesProperties> {
protected xmlKeys: {
linePitch: string;
};
}

View File

@ -0,0 +1,4 @@
import { XmlComponent } from "../../../../../file/xml-components";
export declare class DocumentGrid extends XmlComponent {
constructor(linePitch: number);
}

View File

@ -0,0 +1,11 @@
import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IFooterReferenceAttributes {
type: string;
id: string;
}
export declare class FooterReferenceAttributes extends XmlAttributeComponent<IFooterReferenceAttributes> {
protected xmlKeys: {
type: string;
id: string;
};
}

View File

@ -0,0 +1,4 @@
import { XmlComponent } from "../../../../../file/xml-components";
export declare class FooterReference extends XmlComponent {
constructor();
}

View File

@ -0,0 +1,11 @@
import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IHeaderReferenceAttributes {
type: string;
id: string;
}
export declare class HeaderReferenceAttributes extends XmlAttributeComponent<IHeaderReferenceAttributes> {
protected xmlKeys: {
type: string;
id: string;
};
}

View File

@ -0,0 +1,4 @@
import { XmlComponent } from "../../../../../file/xml-components";
export declare class HeaderReference extends XmlComponent {
constructor();
}

View File

@ -0,0 +1,21 @@
import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IPageMarginAttributes {
top?: number;
right?: number;
bottom?: number;
left?: number;
header?: number;
footer?: number;
gutter?: number;
}
export declare class PageMarginAttributes extends XmlAttributeComponent<IPageMarginAttributes> {
protected xmlKeys: {
top: string;
right: string;
bottom: string;
left: string;
header: string;
footer: string;
gutter: string;
};
}

View File

@ -0,0 +1,4 @@
import { XmlComponent } from "../../../../../file/xml-components";
export declare class PageMargin extends XmlComponent {
constructor(top: number, right: number, bottom: number, left: number, header: number, footer: number, gutter: number);
}

View File

@ -0,0 +1,13 @@
import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IPageSizeAttributes {
width?: number;
height?: number;
orientation?: string;
}
export declare class PageSizeAttributes extends XmlAttributeComponent<IPageSizeAttributes> {
protected xmlKeys: {
width: string;
height: string;
orientation: string;
};
}

View File

@ -0,0 +1,4 @@
import { XmlComponent } from "../../../../../file/xml-components";
export declare class PageSize extends XmlComponent {
constructor(width: number, height: number, orientation: string);
}

View File

@ -0,0 +1,9 @@
import { XmlComponent } from "../../../../file/xml-components";
import { IColumnsAttributes } from "./columns/columns-attributes";
import { IDocGridAttributesProperties } from "./doc-grid/doc-grid-attributes";
import { IPageMarginAttributes } from "./page-margin/page-margin-attributes";
import { IPageSizeAttributes } from "./page-size/page-size-attributes";
export declare type SectionPropertiesOptions = IPageSizeAttributes & IPageMarginAttributes & IColumnsAttributes & IDocGridAttributesProperties;
export declare class SectionProperties extends XmlComponent {
constructor(options?: SectionPropertiesOptions);
}

View File

@ -0,0 +1,53 @@
import { XmlAttributeComponent } from "../../file/xml-components";
export interface IDocumentAttributesProperties {
wpc?: string;
mc?: string;
o?: string;
r?: string;
m?: string;
v?: string;
wp14?: string;
wp?: string;
w10?: string;
w?: string;
w14?: string;
w15?: string;
wpg?: string;
wpi?: string;
wne?: string;
wps?: string;
Ignorable?: string;
cp?: string;
dc?: string;
dcterms?: string;
dcmitype?: string;
xsi?: string;
type?: string;
}
export declare class DocumentAttributes extends XmlAttributeComponent<IDocumentAttributesProperties> {
protected xmlKeys: {
wpc: string;
mc: string;
o: string;
r: string;
m: string;
v: string;
wp14: string;
wp: string;
w10: string;
w: string;
w14: string;
w15: string;
wpg: string;
wpi: string;
wne: string;
wps: string;
Ignorable: string;
cp: string;
dc: string;
dcterms: string;
dcmitype: string;
xsi: string;
type: string;
};
}

15
build/file/document/document.d.ts vendored Normal file
View File

@ -0,0 +1,15 @@
import { IMediaData } from "../../file/media";
import { XmlComponent } from "../../file/xml-components";
import { Paragraph, PictureRun } from "../paragraph";
import { Table } from "../table";
import { SectionPropertiesOptions } from "./body/section-properties/section-properties";
export declare class Document extends XmlComponent {
private readonly body;
constructor(sectionPropertiesOptions?: SectionPropertiesOptions);
addParagraph(paragraph: Paragraph): void;
createParagraph(text?: string): Paragraph;
addTable(table: Table): void;
createTable(rows: number, cols: number): Table;
addDrawing(pictureParagraph: Paragraph): void;
createDrawing(imageData: IMediaData): PictureRun;
}

1
build/file/document/index.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from "./document";