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

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