Interface SemicolonConfigParserOptions<OutType, RawType>

interface SemicolonConfigParserOptions<
    OutType extends OutConfigParseType = OutConfigParseType,
    RawType extends RawConfigParseType = RawConfigParseType,
> {
    keepCase?: boolean;
    keysToHide?: (keyof OutType)[];
    showValue?: ShowValueType;
    validate?: ValidateCallback<OutType, RawType>;
}

Type Parameters

Properties

keepCase?: boolean

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

keysToHide?: (keyof OutType)[]
showValue?: ShowValueType