Interface UncheckedBlock

interface UncheckedBlock {
    documentation?: string;
    id: number;
    nodeType: "UncheckedBlock";
    src: string;
    statements: Statement[];
}

Properties

documentation?: string
id: number
nodeType: "UncheckedBlock"
src: string
statements: Statement[]