effect-tree
    Preparing search index...

    Type Alias PartF<A>

    PartF: TaggedEnum<
        {
            ColumnF: ColumnFData<A>;
            EmptyF: {};
            RowF: RowFData<A>;
            TextF: { show: string };
        },
    >

    A filled rectangular block of characters used by the tree drawing routines as an output type. This is the non-recursive version of Part.

    Type Parameters

    • A