10 lines
307 B
TypeScript
10 lines
307 B
TypeScript
import { SpaceType } from '../../shared';
|
|
import { XmlAttributeComponent } from '../../xml-components';
|
|
export declare class TextAttributes extends XmlAttributeComponent<{
|
|
readonly space: (typeof SpaceType)[keyof typeof SpaceType];
|
|
}> {
|
|
protected readonly xmlKeys: {
|
|
space: string;
|
|
};
|
|
}
|