fix(build): drop duplicate web fetch helper

This commit is contained in:
Vincent Koc
2026-04-07 13:34:06 +01:00
parent 88e407cd8c
commit b0e138f7fd

View File

@@ -23,10 +23,6 @@ type WebFetchConfig = NonNullable<OpenClawConfig["tools"]>["web"] extends infer
: undefined
: undefined;
function resolveFetchConfig(cfg?: OpenClawConfig): WebFetchConfig {
return resolveWebProviderConfig<"fetch", NonNullable<WebFetchConfig>>(cfg, "fetch");
}
export type ResolveWebFetchDefinitionParams = {
config?: OpenClawConfig;
sandboxed?: boolean;