Trilium Frontend API
    Preparing search index...

    Interface OptionsDebug

    interface OptionsDebug {
        debugDeprecation?: boolean;
        debugEventsExternal?: boolean;
        debugEventsInternal?: boolean;
        debugInitialization?: boolean;
        debugInvalidComponentFuncs?: boolean;
        debugInvalidOptions?: boolean;
        invalidOptionWarning?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    debugDeprecation?: boolean

    Disable deprecation warnings

    debugEventsExternal?: boolean

    The debugEventsExternal option will create a console log for every external event that is fired so you can gain an understanding of which events you should be binding to.

    debugEventsInternal?: boolean

    The debugEventsInternal option will create a console log for every internal event that is fired so you can gain an understanding of which events you should be subscribing to in your modules.

    debugInitialization?: boolean

    Enabled by default this will provide a console warning if you try and call a function on the table before it has been initialized.

    debugInvalidComponentFuncs?: boolean

    Disable component function warnings

    debugInvalidOptions?: boolean

    Enabled by default this will provide a console warning if you are trying to set an option on the table that does not exist. With the new optional modular structure this is particularly valuable as it will prompt you if you are trying to use an option for a module that has not been installed

    invalidOptionWarning?: boolean