@calf/dotypay
Version:
Dotypay module of Calf framework.
22 lines (21 loc) • 509 B
TypeScript
import { Common } from "../namespaces/common.namespace";
/**
* Base service
*/
export declare class BaseService {
/**
* Host
* @description Target host for the service
*/
protected get host(): string;
/**
* Config
* @description Configuration for the service
*/
protected readonly config: Common.Interfaces.IDotypayConfig;
/**
* Constructor
* @param config
*/
constructor(config: Common.Interfaces.IDotypayConfig);
}