effect-tree
    Preparing search index...

    Interface UnlinesDraw<A>

    Type of the unlines draw function: a BaseDraw with unlines.

    At the key unlines you will find a version that draws to a string instead of a NonEmptyArray<string> by joining the rows with newlines.

    interface UnlinesDraw<A> {
        unlines: BaseDraw<A, string>;
        (self: Tree<A>): [string, ...string[]];
    }

    Type Parameters

    • A

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    unlines: BaseDraw<A, string>