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

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);
}