mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 08:02:28 +00:00
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
export function refreshRemoteRuntimeSharedControl(options: {
|
|
intentionallyClosed: boolean
|
|
ready: boolean
|
|
refresh(): void
|
|
}): void {
|
|
if (!options.intentionallyClosed && !options.ready) {
|
|
options.refresh()
|
|
}
|
|
}
|