UNPKG

@japa/runner

Version:

A simple yet powerful testing framework for Node.js

15 lines (14 loc) 301 B
import type { CLIArgs } from './types.js'; /** * CLI Parser is used to parse the commandline argument */ export declare class CliParser { /** * Parses command-line arguments */ parse(argv: string[]): CLIArgs; /** * Returns the help string */ getHelp(): string; }