UNPKG

e2ed

Version:

E2E testing framework over Playwright

6 lines (5 loc) 230 B
import type { Void } from './undefined'; /** * Client function by arguments and return result. */ export type ClientFunction<Args extends readonly unknown[] = [], Result = Void> = (this: void, ...args: Args) => Promise<Result>;