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
/** Default border characters. */export const border = { top: "─", topMid: "┬", topLeft: "β”Œ", topRight: "┐", bottom: "─", bottomMid: "β”΄", bottomLeft: "β””", bottomRight: "β”˜", left: "β”‚", leftMid: "β”œ", mid: "─", midMid: "β”Ό", right: "β”‚", rightMid: "─", middle: "β”‚",};
/** Default border characters. */export type Border = typeof border;
/** @deprecated Use `Border` instead. */export type IBorder = Border;