Skip to content

Commit 0910525

Browse files
committed
Fix imports in output index module
- Update markdown exports to match actual function names - Use mdTable, mdTableOfPairs, mdTableStringNumber instead of non-existent functions
1 parent abc5189 commit 0910525

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/utils/output/index.mts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55

66
export { outputResult } from '../output.mts'
77
export { simpleOutput } from '../simple-output.mts'
8-
// Note: These functions may not exist yet in output-formatting.mts
9-
// This is a proposed organization - implement as needed
108
export { colorOrMarkdown } from '../color-or-markdown.mts'
119
export {
12-
markdownTable,
13-
markdownList,
14-
markdownCode
10+
mdTable,
11+
mdTableOfPairs,
12+
mdTableStringNumber
1513
} from '../markdown.mts'
1614

1715
// Output type constants

0 commit comments

Comments
 (0)