UNPKG

e2ed

Version:

E2E testing framework over Playwright

12 lines (11 loc) 278 B
import { Route } from './Route'; import type { Url } from './types/internal'; /** * Abstract route for page. */ export declare abstract class PageRoute<Params = undefined> extends Route<Params> { /** * Returns the origin of the route. */ getOrigin(): Url; }