UNPKG

visualise-elastic-profile

Version:

Visualise results from Profile API of ElasticSearch on the command line

10 lines (9 loc) 300 B
import { Command, Options } from 'clime'; import { File } from 'clime/bld/castable'; export declare class CommandOptions extends Options { noColor?: boolean; maxWidth?: number; } export default class extends Command { execute(profileFile: File, options: CommandOptions): Promise<void>; }