We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c055aee commit c9c6246Copy full SHA for c9c6246
packages/wrangler/src/dev.ts
@@ -15,6 +15,7 @@ import { logger } from "./logger";
15
import { mergeWithOverride } from "./utils/mergeWithOverride";
16
import { getHostFromRoute } from "./zones";
17
import type { Trigger } from "./api";
18
+import type { EventName } from "chokidar/handler.js";
19
import type { EnablePagesAssetsServiceBindingOptions } from "./miniflare-cli/types";
20
import type {
21
CfD1Database,
@@ -680,7 +681,7 @@ export function getBindings(
680
681
}
682
683
export function getAssetChangeMessage(
- eventName: "add" | "addDir" | "change" | "unlink" | "unlinkDir",
684
+ eventName: EventName,
685
assetPath: string
686
): string {
687
let message = `${assetPath} changed`;
0 commit comments