Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
markdalgleish committed Jan 17, 2024
1 parent 63f4b9c commit 23f4aea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/remix-dev/vite/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ type AdapterOverrides = Pick<
>;

type AdapterConfig = AdapterOverrides & {
buildEnd?: BuildEndFunction;
buildEnd?: BuildEndHook;
};

export type RemixVitePluginAdapter = (args: {
Expand Down Expand Up @@ -162,7 +162,7 @@ type BuildEndArgs = Pick<
serverBundlesManifest: ServerBundlesManifest | undefined;
unstable_ssr: boolean;
};
type BuildEndFunction = (args: BuildEndArgs) => void | Promise<void>;
type BuildEndHook = (args: BuildEndArgs) => void | Promise<void>;

export type ResolvedRemixVitePluginConfig = Pick<
ResolvedRemixConfig,
Expand Down

0 comments on commit 23f4aea

Please sign in to comment.