Skip to content

OptionsConfig

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

Defined in: src/backends/backend.ts:25

Resolves the type of Backend.options from the options interface

T