11 lines
330 B
TypeScript
11 lines
330 B
TypeScript
import { SpaceType } from '../../../shared';
|
|
import { XmlComponent } from '../../../xml-components';
|
|
type ITextOptions = {
|
|
readonly space?: (typeof SpaceType)[keyof typeof SpaceType];
|
|
readonly text?: string;
|
|
};
|
|
export declare class Text extends XmlComponent {
|
|
constructor(options: string | ITextOptions);
|
|
}
|
|
export {};
|