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 IRelationshipsAttributesProperties {
xmlns: string;
}
export declare class RelationshipsAttributes extends XmlAttributeComponent<IRelationshipsAttributesProperties> {
protected xmlKeys: {
xmlns: string;
};
}

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

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

View File

@ -0,0 +1,13 @@
import { XmlAttributeComponent } from "../../../file/xml-components";
export interface IRelationshipAttributesProperties {
id: string;
type: string;
target: string;
}
export declare class RelationshipAttributes extends XmlAttributeComponent<IRelationshipAttributesProperties> {
protected xmlKeys: {
id: string;
type: string;
target: string;
};
}

View File

@ -0,0 +1,5 @@
import { XmlComponent } from "../../../file/xml-components";
export declare type RelationshipType = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" | "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties";
export declare class Relationship extends XmlComponent {
constructor(id: string, type: RelationshipType, target: string);
}

View File

@ -0,0 +1,8 @@
import { XmlComponent } from "../../file/xml-components";
import { Relationship, RelationshipType } from "./relationship/relationship";
export declare class Relationships extends XmlComponent {
constructor();
addRelationship(relationship: Relationship): void;
createRelationship(id: number, type: RelationshipType, target: string): Relationship;
readonly RelationshipCount: number;
}