( fullyQualifiedId: string, value: SettingValue, )
| 90 | useSettingsStore.getState().getValue(fullyQualifiedId); |
| 91 | |
| 92 | export const setSetting = async ( |
| 93 | fullyQualifiedId: string, |
| 94 | value: SettingValue, |
| 95 | ): Promise<void> => |
| 96 | useSettingsStore.getState().setValue(fullyQualifiedId, value); |
no test coverage detected