UNPKG
datainout
Version:
latest (1.1.2-beta)
1.1.2-beta
1.1.1-beta
1.1.0-beta
1.0.0
Import and reports data
datainout
/
dist
/
commanders
/
command-actions
/
InitializeAction.d.cts
10 lines
(7 loc)
•
237 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
ICommandAction
}
from
'./ICommandAction.cjs'
;
declare
class
InitializeAction
implements
ICommandAction
{
handleAction
(
data
:
any
):
Promise
<
void
>;
genJsFile
():
void
;
genTsFile
():
void
; }
export
{
InitializeAction
};