donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
14 lines • 443 B
TypeScript
import { Request, Response } from 'express';
/**
* API endpoint that returns the version number packaged with the application.
*/
export declare class VersionApi {
/**
* Express route handler that returns the application version.
*
* @param req - Express request object
* @param res - Express response object
*/
version(_req: Request, res: Response): Promise<void>;
}
//# sourceMappingURL=VersionApi.d.ts.map