( workspaceId: string, model: string, origin: ModelChangeOrigin )
| 67 | } |
| 68 | |
| 69 | export function setWorkspaceModelWithOrigin( |
| 70 | workspaceId: string, |
| 71 | model: string, |
| 72 | origin: ModelChangeOrigin |
| 73 | ): void { |
| 74 | recordWorkspaceModelChange(workspaceId, model, origin); |
| 75 | updatePersistedState(getModelKey(workspaceId), model); |
| 76 | } |
no test coverage detected