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

7
build/file/drawing/drawing.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
import { IMediaData } from "../../file/media";
import { XmlComponent } from "../../file/xml-components";
export declare class Drawing extends XmlComponent {
private inline;
constructor(imageData: IMediaData);
scale(factorX: number, factorY: number): void;
}

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

@ -0,0 +1 @@
export { Drawing } from "./drawing";

View File

@ -0,0 +1,13 @@
import { XmlAttributeComponent } from "../../../../file/xml-components";
export interface IDocPropertiesAttributes {
id?: number;
name?: string;
descr?: string;
}
export declare class DocPropertiesAttributes extends XmlAttributeComponent<IDocPropertiesAttributes> {
protected xmlKeys: {
id: string;
name: string;
descr: string;
};
}

View File

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

View File

@ -0,0 +1,15 @@
import { XmlAttributeComponent } from "../../../../file/xml-components";
export interface IEffectExtentAttributes {
b?: number;
l?: number;
r?: number;
t?: number;
}
export declare class EffectExtentAttributes extends XmlAttributeComponent<IEffectExtentAttributes> {
protected xmlKeys: {
b: string;
l: string;
r: string;
t: string;
};
}

View File

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

View File

@ -0,0 +1,11 @@
import { XmlAttributeComponent } from "../../../../file/xml-components";
export interface IExtentAttributes {
cx?: number;
cy?: number;
}
export declare class ExtentAttributes extends XmlAttributeComponent<IExtentAttributes> {
protected xmlKeys: {
cx: string;
cy: string;
};
}

View File

@ -0,0 +1,6 @@
import { XmlComponent } from "../../../../file/xml-components";
export declare class Extent extends XmlComponent {
private attributes;
constructor(x: number, y: number);
setXY(x: number, y: number): void;
}

View File

@ -0,0 +1,11 @@
import { XmlAttributeComponent } from "../../../../../file/xml-components";
export interface IGraphicFrameLockAttributes {
xmlns?: string;
noChangeAspect?: number;
}
export declare class GraphicFrameLockAttributes extends XmlAttributeComponent<IGraphicFrameLockAttributes> {
protected xmlKeys: {
xmlns: string;
noChangeAspect: string;
};
}

View File

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

View File

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

View File

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

View File

@ -0,0 +1,6 @@
import { XmlComponent } from "../../../../../file/xml-components";
export declare class GraphicData extends XmlComponent {
private pic;
constructor(referenceId: number, x: number, y: number);
setXY(x: number, y: number): void;
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,11 @@
import { XmlAttributeComponent } from "../../../../../../../../../file/xml-components";
export interface IPicLocksAttributes {
noChangeAspect?: number;
noChangeArrowheads?: number;
}
export declare class PicLocksAttributes extends XmlAttributeComponent<IPicLocksAttributes> {
protected xmlKeys: {
noChangeAspect: string;
noChangeArrowheads: string;
};
}

View File

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

View File

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

View File

@ -0,0 +1,13 @@
import { XmlAttributeComponent } from "../../../../../../../../file/xml-components";
export interface INonVisualPropertiesAttributes {
id?: number;
name?: string;
descr?: string;
}
export declare class NonVisualPropertiesAttributes extends XmlAttributeComponent<INonVisualPropertiesAttributes> {
protected xmlKeys: {
id: string;
name: string;
descr: string;
};
}

View File

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

View File

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

View File

@ -0,0 +1,6 @@
import { XmlComponent } from "../../../../../../file/xml-components";
export declare class Pic extends XmlComponent {
private shapeProperties;
constructor(referenceId: number, x: number, y: number);
setXY(x: number, y: number): void;
}

View File

@ -0,0 +1,11 @@
import { XmlAttributeComponent } from "../../../../../../../../../file/xml-components";
export interface IExtentsAttributes {
cx?: number;
cy?: number;
}
export declare class ExtentsAttributes extends XmlAttributeComponent<IExtentsAttributes> {
protected xmlKeys: {
cx: string;
cy: string;
};
}

View File

@ -0,0 +1,6 @@
import { XmlComponent } from "../../../../../../../../../file/xml-components";
export declare class Extents extends XmlComponent {
private attributes;
constructor(x: number, y: number);
setXY(x: number, y: number): void;
}

View File

@ -0,0 +1,6 @@
import { XmlComponent } from "../../../../../../../../file/xml-components";
export declare class Form extends XmlComponent {
private extents;
constructor(x: number, y: number);
setXY(x: number, y: number): void;
}

View File

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

View File

@ -0,0 +1,11 @@
import { XmlAttributeComponent } from "../../../../../../../../../file/xml-components";
export interface IOffsetAttributes {
x?: number;
y?: number;
}
export declare class OffsetAttributes extends XmlAttributeComponent<IOffsetAttributes> {
protected xmlKeys: {
x: string;
y: string;
};
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,6 @@
import { XmlComponent } from "../../../../../../../file/xml-components";
export declare class ShapeProperties extends XmlComponent {
private form;
constructor(x: number, y: number);
setXY(x: number, y: number): void;
}

View File

@ -0,0 +1,6 @@
import { XmlComponent } from "../../../../file/xml-components";
export declare class Graphic extends XmlComponent {
private data;
constructor(referenceId: number, x: number, y: number);
setXY(x: number, y: number): void;
}

View File

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

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

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

View File

@ -0,0 +1,15 @@
import { XmlAttributeComponent } from "../../../file/xml-components";
export interface IInlineAttributes {
distT?: number;
distB?: number;
distL?: number;
distR?: number;
}
export declare class InlineAttributes extends XmlAttributeComponent<IInlineAttributes> {
protected xmlKeys: {
distT: string;
distB: string;
distL: string;
distR: string;
};
}

9
build/file/drawing/inline/inline.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
import { IMediaDataDimensions } from "../../../file/media";
import { XmlComponent } from "../../../file/xml-components";
export declare class Inline extends XmlComponent {
private dimensions;
private extent;
private graphic;
constructor(referenceId: number, dimensions: IMediaDataDimensions);
scale(factorX: number, factorY: number): void;
}