@calf/helios
Version:
Helios module of Calf framework.
17 lines (16 loc) • 503 B
TypeScript
import { IHeliosStringResult } from "../interfaces/results/string.interface";
import { RequestService } from "./request.service";
/**
* EServer
* @description Service for executing general
* eServer methods
*/
export declare class EServerService extends RequestService {
protected readonly isRuntimeDependent: boolean;
/**
* Get version
* @description Get current version
* of the eServer installation
*/
getVersion(): Promise<IHeliosStringResult>;
}