Doubter - v5.1.1-next.e4e15ab
    Preparing search index...

    Interface ParseOptions

    Options used during parsing.

    interface ParseOptions {
        context?: any;
        earlyReturn?: boolean;
        messages?: {
            [code: string | number]:
                | undefined
                | null
                | string
                | number
                | bigint
                | boolean
                | symbol
                | object
                | MessageCallback;
        };
    }
    Index

    Properties

    context?: any

    The custom context.

    earlyReturn?: boolean

    If true then parsing is aborted after the first issue is encountered.

    false
    
    messages?: {
        [code: string | number]:
            | undefined
            | null
            | string
            | number
            | bigint
            | boolean
            | symbol
            | object
            | MessageCallback;
    }

    The map from an error code to a default issue message.