7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
import type { BundlerCTXMap } from "../../../types";
|
|
type Params = {
|
|
bundledMap?: BundlerCTXMap;
|
|
};
|
|
export default function (params?: Params): Promise<string>;
|
|
export {};
|