Files
orca/src/shared/remote-runtime-shared-control-refresh.ts
T

10 lines
222 B
TypeScript

export function refreshRemoteRuntimeSharedControl(options: {
intentionallyClosed: boolean
ready: boolean
refresh(): void
}): void {
if (!options.intentionallyClosed && !options.ready) {
options.refresh()
}
}