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

7 lines
259 B
TypeScript
Raw Normal View History

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