/** Defines all the types of command line actions */ export enum CLIActionType { BUILD = "build", TOOLS = "tools", } /** Defines all the types of tools available */ export enum ToolType { PROJECT_LIST = "project-list", PLAN = "plan", RESUME = "resume" }