UNPKG

malwoden

Version:

![alt text](./coverage/badge-lines.svg) ![alt text](./coverage/badge-statements.svg) ![alt text](./coverage/badge-functions.svg) ![alt text](./coverage/badge-branches.svg)

11 lines (10 loc) 359 B
import { Rect } from "../../struct"; import { BaseTerminal, Color } from "../../terminal"; export declare type BorderStyles = "double-bar" | "single-bar"; export declare function drawBorder(borderOptions: { terminal: BaseTerminal; foreColor?: Color; backColor?: Color; bounds: Rect; style: "double-bar" | "single-bar"; }): void;