import type { Page } from '@playwright/test'; import type { StatusCode } from './http'; /** * Options for `navigateToUrl` action. */ export type NavigateToUrlOptions = Readonly<{ skipLogs?: boolean; } & Parameters[1]>; /** * The object returned by navigation functions. */ export type NavigationReturn = Readonly<{ statusCode: StatusCode | undefined; }>;