UNPKG
@zzck.dev/tui
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
TS Text-based user inteface & commandline parser
github.com/LinkedinVibe/TUI
LinkedinVibe/TUI
@zzck.dev/tui
/
lib
/
action-call.d.ts
10 lines
(9 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
IActionCall
}
from
"./iaction-call"
;
export
declare
class
ActionCallCreationError
extends
Error
{
constructor
(
msg
:
string
); }
export
declare
class
ActionCall
implements
IActionCall
{
command
:
string
;
args
:
Array
<
string
>;
constructor
(
input
:
string
); }