This commit is contained in:
2025-05-28 08:40:26 +00:00
parent e4c762658d
commit 32f8bc192a
24 changed files with 3350 additions and 5416 deletions

View File

@ -8,9 +8,11 @@ import type { ValidationResult } from '../../interfaces/common.js';
*/
export abstract class BaseDecoder {
protected xml: string;
protected skipValidation: boolean;
constructor(xml: string) {
constructor(xml: string, skipValidation: boolean = false) {
this.xml = xml;
this.skipValidation = skipValidation;
}
/**