effect-tree
    Preparing search index...

    Function stackText

    • A column part that joins the given string list vertically.

      At the key rest you will find a version that accepts the strings as a list of arguments.

      Parameters

      • xs: string[]

      Returns Draw.Part

      import {Draw} from 'effect-tree'

      const abcTower = Draw.stackText.rest('A', 'B', 'C')
      // ‘A
      // B
      // C’
    Index

    Properties

    Properties

    rest: (...xs: string[]) => Draw.Part = ...