FreakingGenius - v0.1.0
    Preparing search index...

    Type Alias VisualPrimitive

    VisualPrimitive:
        | TextPrimitive
        | LinePrimitive
        | RectPrimitive
        | CirclePrimitive
        | ImagePrimitive
        | MathPrimitive

    Every drawable element the tutor brain can send to the edge device.

    Use the kind discriminant to safely narrow to a concrete variant:

    switch (primitive.kind) {
    case 'text': ...
    case 'line': ...
    // TypeScript flags any unhandled case
    }