- declare namespace cliBoxes {
-
-
- interface BoxStyle {
- readonly topLeft: string;
- readonly topRight: string;
- readonly bottomLeft: string;
- readonly bottomRight: string;
- readonly horizontal: string;
- readonly vertical: string;
- }
-
-
-
- interface Boxes {
-
-
- readonly single: BoxStyle;
-
-
-
- readonly double: BoxStyle;
-
-
-
- readonly round: BoxStyle;
-
-
-
- readonly bold: BoxStyle;
-
-
-
- readonly singleDouble: BoxStyle;
-
-
-
- readonly doubleSingle: BoxStyle;
-
-
-
- readonly classic: BoxStyle;
- }
- }
-
-
- declare const cliBoxes: cliBoxes.Boxes & {
-
- default: typeof cliBoxes;
- };
-
- export = cliBoxes;
|