mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 01:22:49 +00:00
11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
import * as rspackExports from "./exports";
|
|
import { rspack as rspackFn } from "./rspack";
|
|
type Rspack = typeof rspackFn & typeof rspackExports & {
|
|
rspack: Rspack;
|
|
webpack: Rspack;
|
|
};
|
|
declare const rspack: Rspack;
|
|
export * from "./exports";
|
|
export default rspack;
|
|
export { rspack };
|