Interface TreeSymbols

Interface of the symbols used to represent the tree in a string. See [[DEFAULT_SYMBOLS]] for an example with the default values

interface TreeSymbols {
    dirChild: string;
    fileChild: string;
    forkChild: string;
    lastChild: string;
    linkChild: string;
    pipeIndent: string;
    tabIndent: string;
}

Properties

dirChild: string
fileChild: string
forkChild: string
lastChild: string
linkChild: string
pipeIndent: string
tabIndent: string