Files
docx-js/src/file/paragraph/run/text-attributes.ts

7 lines
257 B
TypeScript
Raw Normal View History

2022-06-15 00:07:12 +01:00
import { SpaceType } from "file/space-type";
import { XmlAttributeComponent } from "file/xml-components";
export class TextAttributes extends XmlAttributeComponent<{ readonly space: SpaceType }> {
protected readonly xmlKeys = { space: "xml:space" };
}