fix type errors

This commit is contained in:
David Blass
2025-10-14 14:58:46 -04:00
parent c8ba7940e3
commit a05829f781
4 changed files with 12 additions and 16 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import { pathToFileURL } from "node:url";
import { fromHere } from "@ark/fs";
import arg from "arg";
import { config } from "dotenv";
import { type ActionInputs, main } from "./main.ts";
import { type Inputs, main } from "./main.ts";
import packageJson from "./package.json" with { type: "json" };
import { runAct } from "./utils/act.ts";
import { setupTestRepo } from "./utils/setup.ts";
@@ -35,7 +35,7 @@ export async function run(
console.log(prompt);
console.log("─".repeat(50));
const inputs: ActionInputs = {
const inputs: Inputs = {
prompt,
anthropic_api_key: process.env.ANTHROPIC_API_KEY,
};