UNPKG

@typed/test

Version:
7 lines (6 loc) 265 B
import { Test, TestCollection } from '../types'; export declare const given: GivenFn; export interface GivenFn { (what: string, tests: Array<Test | TestCollection>): TestCollection; (what: string): (tests: Array<Test | TestCollection>) => TestCollection; }