10 lines
362 B
TypeScript
Raw Normal View History

2025-06-18 15:04:40 +08:00
import type { AutoUpdateConfig } from './types'
import { AUTO_UPDATE_MODE, AUTO_UPDATE_STRATEGY } from './types'
export const defaultValue: AutoUpdateConfig = {
2025-06-19 17:47:31 +08:00
strategy_setting: AUTO_UPDATE_STRATEGY.fixOnly, // For test
2025-06-18 15:04:40 +08:00
upgrade_time_of_day: 0,
2025-06-23 18:09:32 +08:00
upgrade_mode: AUTO_UPDATE_MODE.exclude, // For test
2025-06-23 18:31:21 +08:00
exclude_plugins: ['a', 'c'],
include_plugins: ['b'],
2025-06-18 15:04:40 +08:00
}