(
beans: BeanCollection,
key: Key,
value: GridOptions<TData>[Key]
)
| 22 | } |
| 23 | |
| 24 | export function setGridOption<Key extends ManagedGridOptionKey, TData = any>( |
| 25 | beans: BeanCollection, |
| 26 | key: Key, |
| 27 | value: GridOptions<TData>[Key] |
| 28 | ): void { |
| 29 | updateGridOptions(beans, { [key]: value }); |
| 30 | } |
| 31 | |
| 32 | export function updateGridOptions<TDataUpdate = any>( |
| 33 | beans: BeanCollection, |
nothing calls this directly
no test coverage detected