Skip to main content
Module

x/cliffy/table/border.ts

Command line framework for deno πŸ¦• Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
/** Border characters interface. */export interface IBorder { top: string; topMid: string; topLeft: string; topRight: string; bottom: string; bottomMid: string; bottomLeft: string; bottomRight: string; left: string; leftMid: string; mid: string; midMid: string; right: string; rightMid: string; middle: string;}
/** Default border characters. */export const border: IBorder = { top: "─", topMid: "┬", topLeft: "β”Œ", topRight: "┐", bottom: "─", bottomMid: "β”΄", bottomLeft: "β””", bottomRight: "β”˜", left: "β”‚", leftMid: "β”œ", mid: "─", midMid: "β”Ό", right: "β”‚", rightMid: "─", middle: "β”‚",};