modified git ignore
This commit is contained in:
12
build/file/paragraph/formatting/alignment.d.ts
vendored
Normal file
12
build/file/paragraph/formatting/alignment.d.ts
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import { XmlAttributeComponent, XmlComponent } from "../../../file/xml-components";
|
||||
export declare type AlignmentOptions = "left" | "center" | "right" | "both";
|
||||
export declare class AlignmentAttributes extends XmlAttributeComponent<{
|
||||
val: AlignmentOptions;
|
||||
}> {
|
||||
protected xmlKeys: {
|
||||
val: string;
|
||||
};
|
||||
}
|
||||
export declare class Alignment extends XmlComponent {
|
||||
constructor(type: AlignmentOptions);
|
||||
}
|
Reference in New Issue
Block a user