UNPKG

@happy-coders/fun-cli

Version:

Be your project management more fun!

21 lines (20 loc) 1.32 kB
import { Project } from '../project/project.entity'; import { Task } from '../project/tasks/abstract.task'; export declare const PROJECT_NOT_FOUND: (projectAlias: string) => string; export declare const PROJECT_ALREADY_EXISTS: (projectAlias: string) => string; export declare const EMPTY_PROJECTS: string; export declare const UNEXPECTED_ERROR: string; export declare const ADD_ACTION_SUCCESS: (project: Project) => string; export declare const WITH_ACTION_STARTED = "\nRunning your funny project tasks...\n"; export declare const WITH_ACTION_DONE: (project: Project) => string; export declare const TASK_EXECUTION_STARTED: (task: Task) => string; export declare const TASK_EXECUTED_WITH_SUCCESS: (task: Task) => string; export declare const TASK_EXECUTION_FAILED: (task: Task) => string; export declare const LIST_PROJECTS: (projects: Project[]) => string; export declare const PROJECT_DELETED_WITH_SUCCESS: (project: Project) => string; export declare const NOT_CONFIRMED_DELETION: string; export declare const LIST_PROJECTS_HELP: string; export declare const RUN_COMMAND_HELP: (project: Project) => string; export declare const PROJECT_DETAILS_HELP: (projectAlias?: string | undefined) => string; export declare const ADD_PROJECT_HELP: string; export declare const DELETE_FAIL_JOKE: (project: Project) => string;