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.js
11 lines
(10 loc)
•
314 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
AbstractCommand
=
void
0
;
var
AbstractCommand
=
/**
@class
*/
(
function
(
) {
function
AbstractCommand
(
action
) {
this
.
action
= action; }
return
AbstractCommand
; }());
exports
.
AbstractCommand
=
AbstractCommand
;