added bullet
This commit is contained in:
12
ts/docx/paragraph/style.ts
Normal file
12
ts/docx/paragraph/style.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import {XmlComponent, Attributes} from "../xml-components";
|
||||
|
||||
export class Style implements XmlComponent {
|
||||
private pStyle: Array<XmlComponent>;
|
||||
|
||||
constructor(type: string) {
|
||||
this.pStyle = new Array<XmlComponent>();
|
||||
this.pStyle.push(new Attributes({
|
||||
val: type
|
||||
}));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user