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