happy-coders/fun-cli

View on GitHub
src/lib/commands/abstract.command.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { CommanderStatic } from 'commander';

import { AbstractAction } from '../actions/abstract.action';

export abstract class AbstractCommand {
  constructor(protected action: AbstractAction) {}

  public abstract load(program: CommanderStatic): void;
}