mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 10:45:33 -04:00
22 lines
349 B
TypeScript
22 lines
349 B
TypeScript
export const EmptyBorder = {
|
|
topLeft: "",
|
|
bottomLeft: "",
|
|
vertical: "",
|
|
topRight: "",
|
|
bottomRight: "",
|
|
horizontal: " ",
|
|
bottomT: "",
|
|
topT: "",
|
|
cross: "",
|
|
leftT: "",
|
|
rightT: "",
|
|
}
|
|
|
|
export const SplitBorder = {
|
|
border: ["left" as const, "right" as const],
|
|
customBorderChars: {
|
|
...EmptyBorder,
|
|
vertical: "┃",
|
|
},
|
|
}
|