(selection: ModelSelection)
| 1139 | } |
| 1140 | |
| 1141 | function modelKeyFromSelection(selection: ModelSelection) { |
| 1142 | return JSON.stringify({ |
| 1143 | id: selection.id, |
| 1144 | params: [...(selection.params ?? [])].sort((left, right) => |
| 1145 | left.id.localeCompare(right.id) |
| 1146 | ), |
| 1147 | }) |
| 1148 | } |
| 1149 | |
| 1150 | function isModelSelection(value: unknown): value is ModelSelection { |
| 1151 | if (!hasStringProperty(value, "id")) { |
no outgoing calls
no test coverage detected