Skip to content

Commit d656221

Browse files
authored
fix: async config return type (#1244)
1 parent 47afd57 commit d656221

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/repack/src/utils/defineConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export type RepackRspackConfigFn = (env: EnvOptions) => RepackRspackConfig;
1111

1212
export type RepackRspackConfigAsyncFn = (
1313
env: EnvOptions
14-
) => Promise<RspackConfiguration>;
14+
) => Promise<RepackRspackConfig>;
1515

1616
export type RepackRspackConfigExport =
1717
| RepackRspackConfig

0 commit comments

Comments
 (0)