UNPKG

@stacksjs/dtsx

Version:

A modern, fast .d.ts generation tool, powered by Bun.

6 lines 318 B
import type { Declaration } from './types'; /** * Extract only public API declarations from TypeScript source code * This focuses on what should be in .d.ts files, not implementation details */ export declare function extractDeclarations(sourceCode: string, filePath: string, keepComments?: boolean): Declaration[];