7 lines
259 B
TypeScript
7 lines
259 B
TypeScript
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" };
|
|
}
|