UNPKG

e2ed

Version:

E2E testing framework over Playwright

11 lines (10 loc) 379 B
import type { ClientFunction } from './types/internal'; type Options = Readonly<{ name?: string; timeout?: number; }>; /** * Creates a client function. */ export declare const createClientFunction: <Args extends readonly unknown[], Result>(originalFn: (...args: Args) => Result, { name: nameFromOptions, timeout }?: Options) => ClientFunction<Args, Result>; export {};