UNPKG

@visulima/packem

Version:

A fast and modern bundler for Node.js and TypeScript.

9 lines (8 loc) 284 B
import type { ModuleInfo, PluginContext } from "rollup"; interface ExportInfo { exportedName: string; id: string; sourceName: string; } declare const gatherExports: (context: PluginContext, module_: ModuleInfo) => AsyncGenerator<ExportInfo>; export default gatherExports;