UNPKG
@donmahallem/trapeze-client-desktop
Version:
latest (5.1.1)
5.1.1
An electron app to be used with trapeze endpoints
donmahallem.github.io/trapeze/
donmahallem/trapeze
@donmahallem/trapeze-client-desktop
/
dist
/
cli-commands.d.ts
11 lines
(10 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/*! * Source https://github.com/donmahallem/trapeze */
export
interface
IConfig
{
endpoint
:
URL
;
dev
:
boolean
;
port
:
number
; }
export
declare
type
ArgsCallback
=
(
config
:
IConfig
) =>
void
;
export
declare
const
parseArgs
:
(
cb
:
ArgsCallback
) =>
void
;