interface BooleanBlock {
    arguments?: Record<string, Argument>;
    blockIconURI?: string;
    blockType: "Boolean";
    filter?: ("target" | "sprite")[];
    func?: string;
    hideFromPalette?: boolean;
    opcode: string;
    text: string | string[];
}

Hierarchy (View Summary)

Properties

arguments?: Record<string, Argument>
blockIconURI?: string
blockType: "Boolean"
filter?: ("target" | "sprite")[]
func?: string
hideFromPalette?: boolean
opcode: string
text: string | string[]