import { HttpsOptions } from './http-options.interface';
export interface HttpApplicationOptions {
    https?: HttpsOptions;
}
export type ErrorCallback = (err: Error) => void;
