MCPcopy Create free account
hub / github.com/Noumena-Network/code / write

Method write

src/ink/output.ts:282–294  ·  view source on GitHub ↗
(x: number, y: number, text: string, softWrap?: boolean[])

Source from the content-addressed store, hash-verified

280 }
281
282 write(x: number, y: number, text: string, softWrap?: boolean[]): void {
283 if (!text) {
284 return
285 }
286
287 this.operations.push({
288 type: 'write',
289 x,
290 y,
291 text,
292 softWrap,
293 })
294 }
295
296 writeLines(x: number, y: number, lines: string[]): void {
297 if (lines.length === 0) {

Callers 15

_sendFunction · 0.45
fFunction · 0.45
loadSettingsFromFlagFunction · 0.45
mainFunction · 0.45
getInputPromptFunction · 0.45
runFunction · 0.45
parseChannelEntriesFunction · 0.45
resetCursorFunction · 0.45
setupFunction · 0.45
_sendFunction · 0.45

Calls

no outgoing calls

Tested by 1

writeInputFunction · 0.36