UNPKG

@oaklean/cli

Version:

A command-line interface that provides utilities for parsing, inspecting, and converting the .oak file format, as well as interfaces used in the @oaklean suite.

15 lines (14 loc) 606 B
import { ProfilerConfig, SensorInterfaceType, IProfilerConfigFileRepresentation, UnifiedPath } from '@oaklean/profiler-core'; export default class InitCommands { constructor(); static init(): InitCommands; initCommand(): Promise<void>; configAlreadyExists(path: UnifiedPath): boolean; configureConfig(): Promise<{ mainConfig: ProfilerConfig; localConfig: IProfilerConfigFileRepresentation; }>; confirmConfigFileContent(): Promise<boolean>; confirmOverwriteContent(): Promise<boolean>; selectSensorInterface(): Promise<SensorInterfaceType | undefined>; }