@@ -208,7 +208,7 @@ function sendClientRequest(
208208/**
209209 * Execute a VS Code command in the Client window.
210210 */
211- export async function commandExecute (
211+ async function commandExecute (
212212 command : string ,
213213 args ?: unknown [ ] ,
214214) : Promise < CommandExecuteResult > {
@@ -408,7 +408,7 @@ export async function codebaseGetOverview(
408408/**
409409 * Get detailed exports from a module/file/directory.
410410 */
411- export async function codebaseGetExports (
411+ async function codebaseGetExports (
412412 path : string ,
413413 rootDir ?: string ,
414414 includeTypes ?: boolean ,
@@ -736,7 +736,7 @@ export interface UnifiedFileSymbol {
736736 modifiers ?: string [ ] ;
737737}
738738
739- export interface UnifiedFileResult {
739+ interface UnifiedFileResult {
740740 symbols : UnifiedFileSymbol [ ] ;
741741 content : string ;
742742 totalLines : number ;
@@ -1000,7 +1000,7 @@ export async function fileApplyCodeAction(
10001000 * Extract orphaned content (imports, exports, comments) from TypeScript/JavaScript files.
10011001 * Supplements VS Code's DocumentSymbol API which doesn't include these constructs.
10021002 */
1003- export async function fileExtractOrphanedContent (
1003+ async function fileExtractOrphanedContent (
10041004 filePath : string ,
10051005 includeSymbols = true ,
10061006) : Promise < OrphanedContentResult > {
@@ -1133,7 +1133,7 @@ export async function ensureClientAvailable(): Promise<void> {
11331133/**
11341134 * Returns the fixed Client pipe path for this platform.
11351135 */
1136- export function getClientPipePath ( ) : string {
1136+ function getClientPipePath ( ) : string {
11371137 return CLIENT_PIPE_PATH ;
11381138}
11391139
0 commit comments