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/styles/defaults/index.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
import { XmlComponent } from "../../../file/xml-components";
export declare class DocumentDefaults extends XmlComponent {
private readonly runPropertiesDefaults;
private readonly paragraphPropertiesDefaults;
constructor();
}

View File

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

View File

@ -0,0 +1,7 @@
import { XmlComponent } from "../../../file/xml-components";
export declare class RunPropertiesDefaults extends XmlComponent {
private readonly properties;
constructor();
size(size: number): RunPropertiesDefaults;
font(fontName: string): RunPropertiesDefaults;
}

4
build/file/styles/factory.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
import { Styles } from "./";
export declare class DefaultStylesFactory {
newInstance(): Styles;
}

9
build/file/styles/index.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
import { XmlComponent } from "../../file/xml-components";
import { DocumentDefaults } from "./defaults";
import { ParagraphStyle } from "./style";
export declare class Styles extends XmlComponent {
constructor();
push(style: XmlComponent): Styles;
createDocumentDefaults(): DocumentDefaults;
createParagraphStyle(styleId: string, name?: string): ParagraphStyle;
}

27
build/file/styles/style/components.d.ts vendored Normal file
View File

@ -0,0 +1,27 @@
import { XmlComponent } from "../../../file/xml-components";
export declare class Name extends XmlComponent {
constructor(value: string);
}
export declare class BasedOn extends XmlComponent {
constructor(value: string);
}
export declare class Next extends XmlComponent {
constructor(value: string);
}
export declare class Link extends XmlComponent {
constructor(value: string);
}
export declare class UiPriority extends XmlComponent {
constructor(value: string);
}
export declare class UnhideWhenUsed extends XmlComponent {
}
export declare class QuickFormat extends XmlComponent {
constructor();
}
export declare class TableProperties extends XmlComponent {
}
export declare class RsId extends XmlComponent {
}
export declare class SemiHidden extends XmlComponent {
}

72
build/file/styles/style/index.d.ts vendored Normal file
View File

@ -0,0 +1,72 @@
import { XmlComponent } from "../../../file/xml-components";
import * as paragraph from "../../paragraph";
export interface IStyleAttributes {
type?: string;
styleId?: string;
default?: boolean;
customStyle?: string;
}
export declare class Style extends XmlComponent {
constructor(attributes: IStyleAttributes, name?: string);
push(styleSegment: XmlComponent): void;
}
export declare class ParagraphStyle extends Style {
private readonly paragraphProperties;
private readonly runProperties;
constructor(styleId: string, name?: string);
addParagraphProperty(property: XmlComponent): void;
addRunProperty(property: XmlComponent): void;
basedOn(parentId: string): ParagraphStyle;
quickFormat(): ParagraphStyle;
next(nextId: string): ParagraphStyle;
size(twips: number): ParagraphStyle;
bold(): ParagraphStyle;
italics(): ParagraphStyle;
smallCaps(): ParagraphStyle;
allCaps(): ParagraphStyle;
strike(): ParagraphStyle;
doubleStrike(): ParagraphStyle;
subScript(): ParagraphStyle;
superScript(): ParagraphStyle;
underline(underlineType?: string, color?: string): ParagraphStyle;
color(color: string): ParagraphStyle;
font(fontName: string): ParagraphStyle;
center(): ParagraphStyle;
left(): ParagraphStyle;
right(): ParagraphStyle;
justified(): ParagraphStyle;
thematicBreak(): ParagraphStyle;
maxRightTabStop(): ParagraphStyle;
leftTabStop(position: number): ParagraphStyle;
indent(attrs: object): ParagraphStyle;
spacing(params: paragraph.ISpacingProperties): ParagraphStyle;
keepNext(): ParagraphStyle;
keepLines(): ParagraphStyle;
}
export declare class HeadingStyle extends ParagraphStyle {
constructor(styleId: string, name: string);
}
export declare class TitleStyle extends HeadingStyle {
constructor();
}
export declare class Heading1Style extends HeadingStyle {
constructor();
}
export declare class Heading2Style extends HeadingStyle {
constructor();
}
export declare class Heading3Style extends HeadingStyle {
constructor();
}
export declare class Heading4Style extends HeadingStyle {
constructor();
}
export declare class Heading5Style extends HeadingStyle {
constructor();
}
export declare class Heading6Style extends HeadingStyle {
constructor();
}
export declare class ListParagraph extends ParagraphStyle {
constructor();
}