UNPKG
create-abi
Version:
latest (0.0.0)
0.0.0
Interactive CLI for create Abi.js projects.
github.com/abi-js/abi
abi-js/abi
create-abi
/
dist
/
index.d.ts
10 lines
(7 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
{
default
as
app }
from
'./app.js'
;
import
'./core.js'
;
import
'yargs'
;
/**
@param
args Pass here process.argv */
declare
function
run
(
args
:
string
[]
):
Promise
<
number
>;
declare
function
export_default
(
):
Promise
<
number
>;
export
{ export_default
as
default
, run };