Libraries
    Preparing search index...

    Interface ServerOptions

    Configuration options passed to ServerBuilder.listen() or the Server constructor. All fields are optional; sensible defaults are applied.

    interface ServerOptions {
        host?: string;
        https?: { cert: string; key: string };
        port?: number;
    }
    Index

    Properties

    Properties

    host?: string
    https?: { cert: string; key: string }
    port?: number