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

    Type Alias JsonConfigParserOptions<Out>

    JsonConfigParserOptions is the interface for JsonConfigParser options

    v1.0.0

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

    Type Parameters

    • Out extends Record<string, unknown>

      the type of the output object

    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>