Popii - v0.5.1
    Preparing search index...

    Interface PopiiPluginConfigField

    interface PopiiPluginConfigField {
        type: "string" | "number" | "boolean" | "select";
        description?: string;
        required?: boolean;
        default?: unknown;
        options?: string[];
        env?: string;
    }
    Index

    Properties

    type: "string" | "number" | "boolean" | "select"
    description?: string
    required?: boolean
    default?: unknown
    options?: string[]
    env?: string

    Suggested environment variable name for this field.