Orca Note Plugin API Documentation
    Preparing search index...

    Interface Plugin

    Represents a plugin installed in Orca. Plugins extend the functionality of Orca with additional features.

    interface Plugin {
        enabled: boolean;
        icon: string;
        module?: any;
        schema?: PluginSettingsSchema;
        settings?: Record<string, any>;
    }
    Index

    Properties

    enabled: boolean

    Whether the plugin is currently enabled

    icon: string

    Icon identifier for the plugin

    module?: any

    The loaded plugin module when enabled

    Optional settings schema defining available configuration options

    settings?: Record<string, any>

    Current settings values for the plugin