ZenFS
    Preparing search index...

    Type Alias OptionsConfig<T>

    OptionsConfig: {
        [K in keyof T]: {
            required: K extends RequiredKeys<T> ? true : false;
            type: OptionType | readonly OptionType[];
        }
    }

    Resolves the type of Backend.options from the options interface

    Type Parameters

    • T