xfwd
Version:
16 lines (15 loc) • 395 B
TypeScript
import { TXfwdServerSettings } from './types/types';
declare class XfwdServer {
private _settings;
constructor(s: TXfwdServerSettings);
start(): Promise<{
newSsl: string[];
sites: any;
}>;
protected httpsWorker(glx: any): void;
protected greenlock(): Promise<{
newSsl: string[];
sites: any;
}>;
}
export { XfwdServer };