UNPKG
@bconnorwhite/bob
Version:
latest (2.9.5)
2.9.5
2.9.4
2.9.3
2.9.2
2.9.1
2.9.0
2.8.1
2.8.0
2.7.0
2.6.3
2.6.2
2.6.0
2.5.2
2.5.1
2.5.0
2.4.2
2.4.1
2.4.0
2.3.1
2.3.0
2.2.1
2.2.0
2.1.3
2.1.2
2.1.0
2.0.1
2.0.0
1.9.7
1.9.6
1.9.5
1.9.4
1.9.3
1.9.2
1.9.1
1.9.0
1.8.0
1.7.7
1.7.6
1.7.5
1.7.4
1.7.3
1.7.2
1.7.1
1.7.0
1.6.0
1.5.2
1.5.1
1.5.0
1.4.3
1.4.2
1.4.1
1.4.0
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Bob is a toolkit for TypeScript projects
connorwhite.org/github/bob
bconnorwhite/bob
@bconnorwhite/bob
/
build
/
source
/
commands
/
dev.d.ts
7 lines
(6 loc)
•
255 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
StartArgs
}
from
"./start"
;
export
declare
type
DevArgs
=
Pick
<
StartArgs
,
"ignore"
>;
export
declare
function
dev
(
{ ignore }:
DevArgs
):
void
;
export
declare
function
devAction
(
args
:
DevArgs
):
void
;
declare
const
_default;
export
default
_default;