MCPcopy Index your code
hub / github.com/codeaashu/claude-code / pause

Method pause

src/ink/ink.tsx:790–796  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

788 });
789 }
790 pause(): void {
791 // Flush pending React updates and render before pausing.
792 // @ts-expect-error flushSyncFromReconciler exists in react-reconciler 0.31 but not in @types/react-reconciler
793 reconciler.flushSyncFromReconciler();
794 this.onRender();
795 this.isPaused = true;
796 }
797 resume(): void {
798 this.isPaused = false;
799 this.onRender();

Callers 3

enterAlternateScreenMethod · 0.95
editFileInEditorFunction · 0.45
bridgeMainFunction · 0.45

Calls 1

onRenderMethod · 0.95

Tested by

no test coverage detected