@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.
10 lines (9 loc) • 371 B
TypeScript
import { ProfilerConfig, SensorInterfaceType } from '@oaklean/profiler-core';
export default class InitCommands {
constructor();
static init(): InitCommands;
initCommand(): Promise<void>;
configureConfig(): Promise<ProfilerConfig>;
confirmConfigFileContent(): Promise<boolean>;
selectSensorInterface(): Promise<SensorInterfaceType | undefined>;
}