Documentation
    Preparing search index...

    Successful parsing result.

    Indicates the JSON was parsed without any errors. The data may still have been recovered from non-standard syntax (e.g., unquoted keys, trailing commas), but no information was lost.

    interface ISuccess<T = unknown> {
        data: T;
        success: true;
    }

    Type Parameters

    • T = unknown

      The parsed type

    Index

    Properties

    Properties

    data: T

    The parsed data with correct type.

    success: true

    Success discriminator.

    Always true for successful parsing.