@darthcav/ts-http-server
    Preparing search index...

    Type Alias FSTPlugin

    A plugin entry combining a Fastify plugin function with its options, stored in the plugins Map passed to launcher.

    type FSTPlugin = {
        opts?: FastifyPluginOptions;
        plugin: FastifyPluginCallback<any> | FastifyPluginAsync<any>;
    }
    Index

    Properties

    Properties

    opts?: FastifyPluginOptions

    Optional options forwarded to the plugin on registration.

    plugin: FastifyPluginCallback<any> | FastifyPluginAsync<any>

    The Fastify plugin function to register.