@conciergus/chat - v0.3.1
    Preparing search index...

    Interface PluginTemplateOptions

    Plugin template options

    interface PluginTemplateOptions {
        name: string;
        type:
            | "message"
            | "analytics"
            | "stream"
            | "conversation"
            | "agent"
            | "ui"
            | "full";
        outputDir: string;
        author?: { name: string; email?: string };
        typescript?: boolean;
        includeTests?: boolean;
        includeDocs?: boolean;
    }
    Index

    Properties

    name: string

    Plugin name

    type:
        | "message"
        | "analytics"
        | "stream"
        | "conversation"
        | "agent"
        | "ui"
        | "full"

    Plugin type

    outputDir: string

    Output directory

    author?: { name: string; email?: string }

    Author information

    typescript?: boolean

    Include TypeScript

    includeTests?: boolean

    Include tests

    includeDocs?: boolean

    Include documentation