radius-read
Version:
Realtime Dashboard
26 lines (25 loc) • 664 B
TypeScript
import { WebAppConfig } from "./../models/webapp.model";
/**
* WebAppService is a service class that serves static files for a web application.
*/
export declare class WebAppService {
/**
* Configuration for the web application.
* @date Jun 26, 2025 01:15:42 PM
* @author Biswaranjan Nayak
*
* @private
* @type {!WebAppConfig}
*/
private config;
/**
* Creates an instance of WebAppService.
* @param config
*/
constructor(config: WebAppConfig);
/**
* Initializes the WebAppService with the provided Express application.
* @param app
*/
init(app: any, logger?: any): void;
}