UNPKG

@3kles/3kles-corebe

Version:
10 lines (9 loc) 217 B
import { Server } from "http"; interface IGenericApp { initAppVariable(): void; initModule(): void; initRoute(): void; initError(): void; startApp(port?: number): Server; } export { IGenericApp };