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
Type Parameters
Section titled “Type Parameters”T