jsm-core
Version:
Core library for JSM project
16 lines (15 loc) • 453 B
TypeScript
import { Express } from "express";
import "./event-subscribers.loader";
import http from "node:http";
/**
* Initializes and loads various components of the backend application.
*
* @param expressApp - The Express application instance.
* @returns A Promise that resolves when all components are loaded.
*/
declare const _default: ({ expressApp, }: {
expressApp: Express;
}) => Promise<{
httpServer: http.Server;
}>;
export default _default;