17 lines
300 B
TypeScript
17 lines
300 B
TypeScript
export const SplitBorder = {
|
|
border: ["left" as const, "right" as const],
|
|
customBorderChars: {
|
|
topLeft: "",
|
|
bottomLeft: "",
|
|
vertical: "┃",
|
|
topRight: "",
|
|
bottomRight: "",
|
|
horizontal: "",
|
|
bottomT: "",
|
|
topT: "",
|
|
cross: "",
|
|
leftT: "",
|
|
rightT: "",
|
|
},
|
|
}
|