(IDorName: string | number)
| 629 | } |
| 630 | |
| 631 | export function removeGroup(IDorName: string | number): void { |
| 632 | const groupID = getGroupThrowIfNotExists(IDorName.toString()).ID; |
| 633 | const settings = getPersistedSettings(); |
| 634 | |
| 635 | // biome-ignore lint/style/noNonNullAssertion: throwing above if not valid |
| 636 | delete settings.groups![groupID]; |
| 637 | write(); |
| 638 | } |
| 639 | |
| 640 | export function changeEntityOptions(IDorName: string, newOptions: KeyValue): boolean { |
| 641 | const settings = getPersistedSettings(); |
nothing calls this directly
no test coverage detected