Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
cli-boxes /
Delete
Unzip
Name
Size
Permission
Date
Action
boxes.json
1.36
KB
-rw-r--r--
2023-09-11 10:44
index.d.ts
1.69
KB
-rw-r--r--
2023-09-11 10:44
index.js
167
B
-rw-r--r--
2023-09-11 10:44
package.json
694
B
-rw-r--r--
2023-09-11 10:44
Save
Rename
declare namespace cliBoxes { /** Style of the box border. */ interface BoxStyle { readonly topLeft: string; readonly top: string; readonly topRight: string; readonly right: string; readonly bottomRight: string; readonly bottom: string; readonly bottomLeft: string; readonly left: string; } /** All box styles. */ interface Boxes { /** @example ``` ┌────┐ │ │ └────┘ ``` */ readonly single: BoxStyle; /** @example ``` ╔════╗ ║ ║ ╚════╝ ``` */ readonly double: BoxStyle; /** @example ``` ╭────╮ │ │ ╰────╯ ``` */ readonly round: BoxStyle; /** @example ``` ┏━━━━┓ ┃ ┃ ┗━━━━┛ ``` */ readonly bold: BoxStyle; /** @example ``` ╓────╖ ║ ║ ╙────╜ ``` */ readonly singleDouble: BoxStyle; /** @example ``` ╒════╕ │ │ ╘════╛ ``` */ readonly doubleSingle: BoxStyle; /** @example ``` +----+ | | +----+ ``` */ readonly classic: BoxStyle; /** @example ``` ↘↓↓↓↓↙ → ← ↗↑↑↑↑↖ ``` */ readonly arrow: BoxStyle; } } /** Boxes for use in the terminal. @example ``` import cliBoxes = require('cli-boxes'); console.log(cliBoxes.single); // { // topLeft: '┌', // top: '─', // topRight: '┐', // right: '│', // bottomRight: '┘', // bottom: '─', // bottomLeft: '└', // left: '│' // } ``` */ declare const cliBoxes: cliBoxes.Boxes & { // TODO: Remove this for the next major release default: typeof cliBoxes; }; export = cliBoxes;