refactor: unwrap UI namespace + self-reexport (#22951)

This commit is contained in:
Kit Langton
2026-04-17 00:01:41 +00:00
committed by GitHub
parent f6dbb2f3e0
commit 79732ab175
+2 -2
View File
@@ -3,7 +3,6 @@ import { EOL } from "os"
import { NamedError } from "@opencode-ai/shared/util/error" import { NamedError } from "@opencode-ai/shared/util/error"
import { logo as glyphs } from "./logo" import { logo as glyphs } from "./logo"
export namespace UI {
const wordmark = [ const wordmark = [
``, ``,
`█▀▀█ █▀▀█ █▀▀█ █▀▀▄ █▀▀▀ █▀▀█ █▀▀█ █▀▀█`, `█▀▀█ █▀▀█ █▀▀█ █▀▀▄ █▀▀▀ █▀▀█ █▀▀█ █▀▀█`,
@@ -130,4 +129,5 @@ export namespace UI {
export function markdown(text: string): string { export function markdown(text: string): string {
return text return text
} }
}
export * as UI from "./ui"