UNPKG
packdir-cli
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.3
0.0.2
0.0.1
0.0.0
Packdir CLI
github.com/packdir/pd
packdir/pd
packdir-cli
/
dist
/
commands
/
hello
/
world.d.ts
9 lines
(8 loc)
•
223 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Command
}
from
'@oclif/core'
;
export
default
class
World
extends
Command
{
static
description
:
string
;
static
examples
:
string
[];
static
flags
: {};
static
args
:
never
[];
run
():
Promise
<
void
>; }