Type Alias ParseSNBTCompoundStringResultWithErrors

ParseSNBTCompoundStringResultWithErrors: {
    errors: SNBTParseError[];
    value: Compound;
}

The result of the parseSNBTCompoundString function when ParseSNBTBaseOptions.keepGoingAfterError is true.

Type declaration

  • errors: SNBTParseError[]

    The errors that occurred while parsing the SNBT compound.

  • value: Compound

    The parsed SNBT compound.