Interface CodeChunkData

interface CodeChunkData {
    code: string;
    id: string;
    next: null | string;
    normalizedInfo: BlockInfo;
    plainResult: string;
    prev: string;
    result: string;
    running: boolean;
}

Properties

code: string

code content of the code chunk

id: string

id of the code chunk

next: null | string

next code chunk

normalizedInfo: BlockInfo

code block info (normalized in advance)

plainResult: string

result after running code chunk

prev: string

previous code chunk

result: string

result after formatting according to options['output'] format

running: boolean

whether is running the code chunk or not

Generated using TypeDoc