update
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user