# IHttpFactory Interface

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

# Overview

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

# Members

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

get(): Http.Server;