2017-12-30 20:25:16 +00:00
|
|
|
import { XmlComponent } from "file/xml-components";
|
2016-06-10 15:03:44 +01:00
|
|
|
|
2021-05-24 17:12:10 +03:00
|
|
|
// <xsd:group name="EG_RunInnerContent">
|
|
|
|
// ...
|
|
|
|
// <xsd:element name="tab" type="CT_Empty" minOccurs="0"/>
|
|
|
|
//
|
|
|
|
// TODO: this is unused and undocumented currently.
|
|
|
|
// I think the intended use was for users to import, and insert as a child of `Run`.
|
2016-06-10 15:03:44 +01:00
|
|
|
export class Tab extends XmlComponent {
|
|
|
|
constructor() {
|
|
|
|
super("w:tab");
|
|
|
|
}
|
2017-03-08 21:49:41 +00:00
|
|
|
}
|