20 lines
418 B
TypeScript
20 lines
418 B
TypeScript
import { XmlComponent } from "file/xml-components";
|
|
|
|
class DoNotExpandShiftReturn extends XmlComponent {
|
|
constructor() {
|
|
super("w:doNotExpandShiftReturn");
|
|
}
|
|
}
|
|
|
|
export class Compatibility extends XmlComponent {
|
|
constructor() {
|
|
super("w:compat");
|
|
}
|
|
|
|
public doNotExpandShiftReturn(): Compatibility {
|
|
this.root.push(new DoNotExpandShiftReturn());
|
|
|
|
return this;
|
|
}
|
|
}
|