modified git ignore
This commit is contained in:
9
build/file/relationships/attributes.d.ts
vendored
Normal file
9
build/file/relationships/attributes.d.ts
vendored
Normal 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
1
build/file/relationships/index.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export * from "./relationships";
|
13
build/file/relationships/relationship/relationship-attributes.d.ts
vendored
Normal file
13
build/file/relationships/relationship/relationship-attributes.d.ts
vendored
Normal 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;
|
||||
};
|
||||
}
|
5
build/file/relationships/relationship/relationship.d.ts
vendored
Normal file
5
build/file/relationships/relationship/relationship.d.ts
vendored
Normal 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);
|
||||
}
|
8
build/file/relationships/relationships.d.ts
vendored
Normal file
8
build/file/relationships/relationships.d.ts
vendored
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user