import type { PopsPanelContentConfig } from "@whitesev/pops/dist/types/src/components/panel/types/index.js"; import { UISwitch } from "@components/setting/components/ui-switch"; const MSettingUI_Home: PopsPanelContentConfig = { id: "little-red-book-panel-config-home", title: "主页", views: [ { text: "", type: "container", views: [ { text: "劫持/拦截", type: "deepMenu", views: [ { text: "", type: "container", views: [ UISwitch("劫持点击事件", "little-red-book-repariClick", true, void 0, "可阻止点击跳转至下载页面"), ], }, ], }, ], }, ], }; export { MSettingUI_Home };