modified git ignore
This commit is contained in:
12
build/file/header/header.d.ts
vendored
Normal file
12
build/file/header/header.d.ts
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import { IMediaData } from "../../file/media";
|
||||
import { XmlComponent } from "../../file/xml-components";
|
||||
import { Paragraph } from "../paragraph";
|
||||
import { Table } from "../table";
|
||||
export declare class Header extends XmlComponent {
|
||||
constructor();
|
||||
addParagraph(paragraph: Paragraph): void;
|
||||
createParagraph(text?: string): Paragraph;
|
||||
addTable(table: Table): void;
|
||||
createTable(rows: number, cols: number): Table;
|
||||
addDrawing(imageData: IMediaData): void;
|
||||
}
|
Reference in New Issue
Block a user