UNPKG
@titan-suite/cli
Version:
latest (0.2.4)
0.2.4
0.1.9
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.11-alpha
0.0.10-alpha
0.0.9-alpha
0.0.8-alpha
0.0.7-alpha
0.0.6-alpha
0.0.5
0.0.5-alpha
0.0.4-alpha
0.0.3-alpha
0.0.2-alpha
0.0.1
0.0.1-alpha
0.0.0
The complete smart contract development tool
titan-suite.com
titan-suite/cli
@titan-suite/cli
/
lib
/
commands
/
test.d.ts
13 lines
(12 loc)
•
322 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
Command
}
from
'@oclif/command'
;
export
default
class
Test
extends
Command
{
static
description
:
string
;
static
examples
:
string
[];
static
flags
: {
help
:
import
(
"@oclif/parser/lib/flags"
).
IBooleanFlag
<
void
>; };
static
args
: {
name
:
string
; }[];
run
():
Promise
<
void
>; }