@urban-bot/core
Version:
The universal chatbot library based on React
8 lines (7 loc) • 303 B
TypeScript
import type { Express } from 'express';
export declare type ExpressAppType = {
app: Express;
isStarted: boolean;
};
export declare function getExpressApp(port: number, expressApp?: import("express-serve-static-core").Express): ExpressAppType;
export declare function listen(port: number): void;