@turbowarp/types-tw
    Preparing search index...

    Interface Block

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

    Properties

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