1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import { IStringOptions } from "../options";
- export interface IXmlDeclOptions {
-
- encoding?: string;
-
- standalone?: string;
-
- version?: string;
- }
- export default class XmlDecl<Parent> {
- private readonly _validation;
- private _encoding;
- private readonly _parent;
- private _standalone;
- private _version;
- constructor(parent: Parent, validation: boolean, options: IXmlDeclOptions);
-
- get encoding(): string | undefined;
-
- set encoding(encoding: string | undefined);
-
- get standalone(): string | undefined;
-
- set standalone(standalone: string | undefined);
-
- get version(): string;
-
- set version(version: string);
-
- toString(options?: IStringOptions): string;
-
- up(): Parent;
- }
|