getOption()
Call Signature
getOption<
OptType>(arr:FullOptionList<OptType>,name:string):OptType|undefined
Defined in: packages/core/src/utils/optGroupUtils.ts:272
Gets the option from an OptionList with the given name. Handles
Option arrays as well as OptionGroup arrays.
Type Parameters
| Type Parameter |
|---|
OptType extends {[key: string]: unknown; disabled?: boolean; label: string; name: string; value: string; } |
Parameters
| Parameter | Type |
|---|---|
arr | FullOptionList<OptType> |
name | string |
Returns
OptType | undefined
Call Signature
getOption<
OptType>(arr:FlexibleOptionList<OptType>,name:string):OptType|undefined
Defined in: packages/core/src/utils/optGroupUtils.ts:276
Gets the option from an OptionList with the given name. Handles
Option arrays as well as OptionGroup arrays.
Type Parameters
| Type Parameter |
|---|
OptType extends {[key: string]: unknown; disabled?: boolean; label: string; name?: string; value: string; } |
Parameters
| Parameter | Type |
|---|---|
arr | FlexibleOptionList<OptType> |
name | string |
Returns
OptType | undefined
Call Signature
getOption<
OptType>(arr:FlexibleOptionList<OptType>,name:string):OptType|undefined
Defined in: packages/core/src/utils/optGroupUtils.ts:280
Gets the option from an OptionList with the given name. Handles
Option arrays as well as OptionGroup arrays.
Type Parameters
| Type Parameter |
|---|
OptType extends {[key: string]: unknown; disabled?: boolean; label: string; name: string; value?: string; } |
Parameters
| Parameter | Type |
|---|---|
arr | FlexibleOptionList<OptType> |
name | string |
Returns
OptType | undefined
API documentation is generated from the latest commit on the main branch. It may be somewhat inconsistent with official releases of React Query Builder.