UNPKG

cmetrix

Version:

CLI to build code metrics charts for your projects

9 lines (8 loc) 226 B
import { Logger } from '../domain'; export interface ShellCreation { logger: Logger; } export interface StandardOptions { workingDirectory?: string; } export declare function createShell(creation: ShellCreation): any;