@avanio/variable-util
    Preparing search index...

    Type Alias JsonConfigParserOptions<Out>

    type JsonConfigParserOptions<Out extends Record<string, unknown>> = {
        protectedKeys?: Iterable<keyof Out>;
        showProtectedKeys?: ShowValueType;
        validate?: ValidateCallback<object, Out>;
    }

    Type Parameters

    • Out extends Record<string, unknown>
    Index

    Properties

    protectedKeys?: Iterable<keyof Out>

    keys to hide or partially hide

    showProtectedKeys?: ShowValueType

    if and how to show protected keys

    validate?: ValidateCallback<object, Out>