@zthun/bouncer
    Preparing search index...

    Interface IZBouncerNodeServerFactory

    Constructs a NodeServerLike object based on the implementation of this interface.

    interface IZBouncerNodeServerFactory {
        name: string;
        create(): Promise<NodeServerLike>;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    name: string

    The name of the server being created.

    This is going to be Http or Https depending on the server like object that is being returned.

    Methods