UNPKG

create-testplane

Version:

A tool for fast and simple Testplane configuration

10 lines (9 loc) 253 B
import type { ToolOpts } from "./types/toolOpts"; export type ConfigNote = { plugin: string; configNote: string; }; export declare const getPluginNames: (opts: ToolOpts) => Promise<{ pluginNames: string[]; configNotes: ConfigNote[]; }>;