interface Block {
    fields: Record<string, Field>;
    id: string;
    inputs: Record<string, Input>;
    mutation: null | ProcedureCallMutation | ProcedurePrototypeMutation;
    next: null | string;
    opcode: string;
    parent: null | string;
    shadow: boolean;
    topLevel: boolean;
}

Properties

fields: Record<string, Field>
id: string
inputs: Record<string, Input>
next: null | string
opcode: string
parent: null | string
shadow: boolean
topLevel: boolean