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

    Interface SemicolonConfigParserOptions<OutType>

    interface SemicolonConfigParserOptions<
        OutType extends Record<string, unknown> = Record<string, unknown>,
    > {
        keepCase?: boolean;
        protectedKeys?: Iterable<keyof OutType, any, any>;
        showProtectedKeys?: ShowValueType;
        validate?: ValidateCallback<Record<string, string>, OutType>;
    }

    Type Parameters

    • OutType extends Record<string, unknown> = Record<string, unknown>
    Index

    Properties

    keepCase?: boolean

    keep case of keys, if set as false then will convert keys first letters to lower case (Js Style)

    protectedKeys?: Iterable<keyof OutType, any, any>

    keys to hide or partially hide

    showProtectedKeys?: ShowValueType

    if and how to show protected keys

    validate?: ValidateCallback<Record<string, string>, OutType>