modified git ignore
This commit is contained in:
9
build/file/document/body/section-properties/columns/columns-attributes.d.ts
vendored
Normal file
9
build/file/document/body/section-properties/columns/columns-attributes.d.ts
vendored
Normal 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;
|
||||
};
|
||||
}
|
4
build/file/document/body/section-properties/columns/columns.d.ts
vendored
Normal file
4
build/file/document/body/section-properties/columns/columns.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from "../../../../../file/xml-components";
|
||||
export declare class Columns extends XmlComponent {
|
||||
constructor(space: number);
|
||||
}
|
9
build/file/document/body/section-properties/doc-grid/doc-grid-attributes.d.ts
vendored
Normal file
9
build/file/document/body/section-properties/doc-grid/doc-grid-attributes.d.ts
vendored
Normal 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;
|
||||
};
|
||||
}
|
4
build/file/document/body/section-properties/doc-grid/doc-grid.d.ts
vendored
Normal file
4
build/file/document/body/section-properties/doc-grid/doc-grid.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from "../../../../../file/xml-components";
|
||||
export declare class DocumentGrid extends XmlComponent {
|
||||
constructor(linePitch: number);
|
||||
}
|
11
build/file/document/body/section-properties/footer-reference/footer-reference-attributes.d.ts
vendored
Normal file
11
build/file/document/body/section-properties/footer-reference/footer-reference-attributes.d.ts
vendored
Normal 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;
|
||||
};
|
||||
}
|
4
build/file/document/body/section-properties/footer-reference/footer-reference.d.ts
vendored
Normal file
4
build/file/document/body/section-properties/footer-reference/footer-reference.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from "../../../../../file/xml-components";
|
||||
export declare class FooterReference extends XmlComponent {
|
||||
constructor();
|
||||
}
|
11
build/file/document/body/section-properties/header-reference/header-reference-attributes.d.ts
vendored
Normal file
11
build/file/document/body/section-properties/header-reference/header-reference-attributes.d.ts
vendored
Normal 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;
|
||||
};
|
||||
}
|
4
build/file/document/body/section-properties/header-reference/header-reference.d.ts
vendored
Normal file
4
build/file/document/body/section-properties/header-reference/header-reference.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from "../../../../../file/xml-components";
|
||||
export declare class HeaderReference extends XmlComponent {
|
||||
constructor();
|
||||
}
|
21
build/file/document/body/section-properties/page-margin/page-margin-attributes.d.ts
vendored
Normal file
21
build/file/document/body/section-properties/page-margin/page-margin-attributes.d.ts
vendored
Normal 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;
|
||||
};
|
||||
}
|
4
build/file/document/body/section-properties/page-margin/page-margin.d.ts
vendored
Normal file
4
build/file/document/body/section-properties/page-margin/page-margin.d.ts
vendored
Normal 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);
|
||||
}
|
13
build/file/document/body/section-properties/page-size/page-size-attributes.d.ts
vendored
Normal file
13
build/file/document/body/section-properties/page-size/page-size-attributes.d.ts
vendored
Normal 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;
|
||||
};
|
||||
}
|
4
build/file/document/body/section-properties/page-size/page-size.d.ts
vendored
Normal file
4
build/file/document/body/section-properties/page-size/page-size.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from "../../../../../file/xml-components";
|
||||
export declare class PageSize extends XmlComponent {
|
||||
constructor(width: number, height: number, orientation: string);
|
||||
}
|
9
build/file/document/body/section-properties/section-properties.d.ts
vendored
Normal file
9
build/file/document/body/section-properties/section-properties.d.ts
vendored
Normal 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);
|
||||
}
|
Reference in New Issue
Block a user