UNPKG
react-gnome
Version:
latest (0.0.1)
0.0.1
## Getting Started
react-gnome
/
dist
/
types
/
utils
/
command.d.ts
10 lines
(9 loc)
•
211 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
class
Command
{
private
command;
private
args;
private
options;
constructor
(
command
:
string
,
args
:
string
[],
options
: { cwd?:
string
; }
);
run
():
Promise
<
string
>; }