trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
13 lines • 509 B
TypeScript
/**
* Load browser verify step definitions from `.trellis/browser-suites/`.
*/
import { type BrowserVerifyStep } from './browser-types.js';
export interface BrowserStepsFile {
steps: BrowserVerifyStep[];
target?: {
urlPattern?: string;
};
}
export declare function browserSuitePath(rootPath: string, suiteId: string): string;
export declare function loadBrowserSteps(rootPath: string, suiteId: string, stepsFile?: string): BrowserVerifyStep[];
//# sourceMappingURL=browser-steps.d.ts.map