# IHttpsFactory Interface

Module
import { IHttpsFactory } from "@tsed/common"
Source/packages/common/src/platform-builder/decorators/httpsServer.ts

# Overview

interface IHttpsFactory {
    (target: Type<any>, targetKey: string, descriptor: TypedPropertyDescriptor<Function> | number): any;
    /**
     * @deprecated
     * @returns {"https".Server}
     */
    get(): Https.Server;
}

# Members

(target: Type<any>, targetKey: string, descriptor: TypedPropertyDescriptor<Function> | number): any;

get(): Https.Server;