UNPKG

test-bed-time-service

Version:

A time service for the test-bed, producing messages with real time, fictive time and scenario duration.

15 lines (14 loc) 400 B
import { ICommandOptions } from './'; import { Application } from 'express'; /** Main application */ export declare class App { /** Port number where the service listens for clients */ private readonly port; private app; private server; private io; private timeService; constructor(options: ICommandOptions); private listen; getApp(): Application; }