UNPKG
@happy-coders/fun-cli
Version:
latest (1.0.0-beta.2)
1.0.0-beta.2
1.0.0-beta.1
1.0.0-beta
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
1.0.0-alpha
Be your project management more fun!
github.com/happy-coders/fun-cli
happy-coders/fun-cli
@happy-coders/fun-cli
/
lib
/
commands
/
abstract.command.d.ts
8 lines
(7 loc)
•
286 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
CommanderStatic
}
from
'commander'
;
import
{
AbstractAction
}
from
'../actions/abstract.action'
;
export
declare
abstract
class
AbstractCommand
{
protected
action
:
AbstractAction
;
constructor
(
action
:
AbstractAction
);
abstract
load
(
program
:
CommanderStatic
):
void
; }