UNPKG

@donmahallem/trapeze-client-desktop

Version:

An electron app to be used with trapeze endpoints

18 lines (17 loc) 338 B
/*! * Source https://github.com/donmahallem/trapeze */ export interface IApiServerConfig { /** * Endpoint to be used. */ endpoint: string; /** * Port to be used for the api server */ port: number; /** * Secret to be used to authorize api calls */ secret: string; }