UNPKG
node2sql-cli
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Node project tools
node2sql-cli
/
dist
/
lib
/
runner
/
runner.d.ts
10 lines
(9 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
declare
type
RunnerBinary
=
'npm'
|
'yarn'
;
export
declare
class
Runner
{
private
binary;
private
_directory;
constructor
(
binary
:
RunnerBinary
);
directory
(
directory
:
string
):
this
;
run
(...
args
:
string
[]):
Promise
<
string
|
null
>; }
export
{};