UNPKG

donobu

Version:

Create browser automations with an LLM agent and replay them as Playwright scripts.

14 lines 403 B
import { Request, Response } from 'express'; /** * API endpoints for basic health/connectivity checks. */ export declare class PingApi { /** * No-op endpoint that just returns HTTP 200. * * @param _req - Express request object (unused) * @param res - Express response object */ ping(_req: Request, res: Response): Promise<void>; } //# sourceMappingURL=PingApi.d.ts.map