@meld-ts/core
    Preparing search index...

    Interface DebugSettings

    运行期调试开关,通过 setDebug() 写入实例,每个实例独立持有。

    • debug — 全局开关,控制所有未单独配置的 scope
    • 其余字段 — 各 scope 的独立开关,优先级高于 debug
    interface DebugSettings {
        debug?: boolean;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

    debug?: boolean