@monitoro/herd
Version:
Automate your browser, build AI web tools and MCP servers with Monitoro Herd
13 lines (12 loc) • 367 B
TypeScript
import { ResourceProvider } from "./ResourceProvider.js";
/**
* Load a trail from a local directory
* @param path Path to the trail directory
* @returns Trail components: actions, URLs, selectors, and resources
*/
export declare function loadTrail(path: string): Promise<{
actions: any;
urls: any;
selectors: any;
resources: ResourceProvider;
}>;