Files
shockbot/index.ts
T
2025-10-31 04:04:06 -04:00

12 lines
270 B
TypeScript

/**
* Library entry point for npm package
* This exports the main function for programmatic usage
*/
export type { Agent, AgentConfig, AgentResult } from "./agents/shared.ts";
export {
type Inputs as ExecutionInputs,
type MainResult,
main,
} from "./main.ts";