File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/open-next/src/plugins Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { readFileSync } from "node:fs";
33import chalk from "chalk" ;
44import type { Plugin } from "esbuild" ;
55import type {
6+ DefaultOverrideOptions ,
67 IncludedImageLoader ,
78 IncludedOriginResolver ,
89 IncludedWarmer ,
@@ -15,8 +16,8 @@ import logger from "../logger.js";
1516
1617export interface IPluginSettings {
1718 overrides ?: {
18- wrapper ?: OverrideOptions [ "wrapper" ] ;
19- converter ?: OverrideOptions [ "converter" ] ;
19+ wrapper ?: DefaultOverrideOptions < any , any > [ "wrapper" ] ;
20+ converter ?: DefaultOverrideOptions < any , any > [ "converter" ] ;
2021 tagCache ?: OverrideOptions [ "tagCache" ] ;
2122 queue ?: OverrideOptions [ "queue" ] ;
2223 incrementalCache ?: OverrideOptions [ "incrementalCache" ] ;
You can’t perform that action at this time.
0 commit comments