@wix-pilot/core
Version:
A flexible plugin that drives your tests with human-written commands, enhanced by the power of large language models (LLMs)
18 lines (17 loc) • 589 B
TypeScript
import { TestingFrameworkAPICatalog, TestingFrameworkAPICatalogCategory, TestingFrameworkAPICatalogItem } from "../types";
export declare class APIFormatter {
private apiCatalog;
constructor(apiCatalog: TestingFrameworkAPICatalog);
/**
* Formats API method
*/
formatAPIMethod(method: TestingFrameworkAPICatalogItem): string;
/**
* Formats API category with its methods
*/
formatAPICategory(category: TestingFrameworkAPICatalogCategory): string;
/**
* Formats all API methods grouped by categories
*/
formatAPIInfo(): string;
}