UNPKG
@ibm/ibmi-ci
Version:
latest (0.2.7)
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
IBM i CLI tool
@ibm/ibmi-ci
/
dist
/
src
/
steps
/
actions
/
cl.d.ts
8 lines
(7 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
StepI
}
from
"../step"
;
export
declare
class
ClStep
extends
StepI
{
readonly
id =
"cl"
;
readonly
description =
"Execute a CL command on the remote system"
;
readonly
requiredParams
:
string
[];
execute
():
Promise
<
boolean
>; }