Files
openclaw/src/channels/plugins/setup-wizard-helpers.runtime.ts
2026-03-17 00:59:20 -07:00

9 lines
377 B
TypeScript

import type { promptResolvedAllowFrom as promptResolvedAllowFromType } from "./setup-wizard-helpers.js";
export async function promptResolvedAllowFrom(
...args: Parameters<typeof promptResolvedAllowFromType>
): ReturnType<typeof promptResolvedAllowFromType> {
const runtime = await import("./setup-wizard-helpers.js");
return runtime.promptResolvedAllowFrom(...args);
}