9e019d89d2
* Clean up actions and payloads * Clean up action * Cleanup
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
/**
|
|
* Library entry point for npm package
|
|
* This exports the main function for programmatic usage
|
|
*/
|
|
|
|
export type { Agent, AgentRunContext, AgentResult } from "./agents/shared.ts";
|
|
export {
|
|
type Inputs as ExecutionInputs,
|
|
type MainResult,
|
|
main,
|
|
} from "./main.ts";
|