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

Method blank

src/ink/ink.tsx:987–998  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

985 const rows = this.terminalRows;
986 const cols = this.terminalColumns;
987 const blank = (): Frame => ({
988 screen: createScreen(cols, rows, this.stylePool, this.charPool, this.hyperlinkPool),
989 viewport: {
990 width: cols,
991 height: rows + 1
992 },
993 cursor: {
994 x: 0,
995 y: 0,
996 visible: true
997 }
998 });
999 this.frontFrame = blank();
1000 this.backFrame = blank();
1001 this.log.reset();

Callers

nothing calls this directly

Calls 1

createScreenFunction · 0.85

Tested by

no test coverage detected