UNPKG

@prezly/theme-kit-nextjs

Version:

Data layer and utility library for developing Prezly themes with NextJS

12 lines (11 loc) 337 B
import type { PlaywrightTestConfig } from '@playwright/test'; interface Configuration { testDir: string; baseUrl?: string; ci?: boolean; } /** * See https://playwright.dev/docs/test-configuration. */ export declare function createPlaywrightConfig({ testDir, baseUrl, ci, }: Configuration): PlaywrightTestConfig; export {};