UNPKG

606 BTypeScriptView Raw
1import { Command } from '@oclif/command';
2export default abstract class Base extends Command {
3 root_folder_path(): string;
4 config_folder_path(): string;
5 icon_folder_path(icon_file_name: string): string;
6 system_default_env_file_path(): string;
7 system_env_file_path(): string;
8 system_env_config(): object;
9 system_docker_compose_file_path(): string;
10 project_icon_path(): string;
11 project_env_file_path(): string;
12 project_env_config(): object;
13 project_import_file_path(): string;
14 project_import_config(): object;
15 project_docker_compose_file_path(): string;
16}