bit-bin
Version:
<a href="https://opensource.org/licenses/Apache-2.0"><img alt="apache" src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"></a> <a href="https://github.com/teambit/bit/blob/master/CONTRIBUTING.md"><img alt="prs" src="https://img.shields.io/b
15 lines (14 loc) • 595 B
TypeScript
import { ForkLevel } from '../api/consumer/lib/test';
import { SpecsResultsWithMetaData, Results } from '../consumer/specs-results/specs-results';
export declare type Tester = {
run: (filePath: string) => Promise<Results>;
globals: Record<string, any>;
modules: Record<string, any>;
};
declare const _default: ({ ids, forkLevel, includeUnmodified, verbose }: {
ids: string[] | null | undefined;
forkLevel: ForkLevel;
includeUnmodified: boolean;
verbose: boolean | null | undefined;
}) => Promise<SpecsResultsWithMetaData | null | undefined>;
export default _default;