1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- export interface IXmlCharDataOptions {
-
- charData: string;
-
- replaceInvalidCharsInCharData?: boolean;
- }
- export default class XmlCharData<Parent> {
- private readonly _replaceInvalidCharsInCharData;
- private readonly _parent;
- private readonly _validation;
- private _charData;
- constructor(parent: Parent, validation: boolean, options: IXmlCharDataOptions);
-
- get charData(): string;
-
- set charData(charData: string);
-
- toString(): string;
-
- up(): Parent;
- }
|