UNPKG
@handfish/hygen
Version:
latest (6.1.6)
6.1.6
6.1.5
6.1.4
6.1.3
6.1.2
6.1.1
The scalable code generator that saves you time.
github.com/jondot/hygen
jondot/hygen
@handfish/hygen
/
dist
/
ops
/
shell.d.ts
12 lines
(11 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
ActionResult
}
from
'../types'
;
declare
const
shell
:
(
{ attributes: { sh }, body }: { attributes: { sh:
any
; }; body:
any
; },
args
:
any
, { logger, exec }: { logger:
any
; exec:
any
; }
) =>
Promise
<
ActionResult
>;
export
default
shell;