@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.
14 lines (13 loc) • 468 B
TypeScript
export default class ReportCommands {
constructor();
static init(): ReportCommands;
toHash(input: string): Promise<void>;
convertToJSON(input: string, output: string): Promise<void>;
convertToSourceFileMetaDataTreeTree(input: string, output: string): Promise<void>;
check(input: string, options: {
sourceNodes: boolean;
}): Promise<void>;
inspect(input: string, options: {
listModules: boolean;
}): Promise<void>;
}