bob-the-bundler
Version:
Bob The Bundler!
10 lines • 347 B
TypeScript
type Exports = string | {
require?: string | Record<string, string>;
import?: string | Record<string, string>;
default?: string | Record<string, string>;
};
export declare function rewriteExports(exports: Record<string, Exports>, distDir: string): {
[x: string]: Exports;
};
export {};
//# sourceMappingURL=rewrite-exports.d.ts.map