@mcp-z/server
    Preparing search index...

    Interface PromptModule

    Prompt module interface - context-free Prompts are created via factory functions for consistency with tools/resources

    Note: Handler uses unknown to avoid contravariance issues.

    interface PromptModule {
        config: PromptConfig;
        handler: unknown;
        name: string;
    }
    Index

    Properties

    Properties

    config: PromptConfig
    handler: unknown
    name: string