10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
import type { Plugin } from "esbuild";
|
|
import type { PageFiles } from "../../../types";
|
|
type Params = {
|
|
entryToPage: Map<string, PageFiles & {
|
|
tsx: string;
|
|
}>;
|
|
};
|
|
export default function virtualFilesPlugin({ entryToPage }: Params): Plugin;
|
|
export {};
|