malwoden
Version:
   
11 lines (10 loc) • 359 B
TypeScript
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;