You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.ts 331B

123456789
  1. import type { AutoUpdateConfig } from './types'
  2. import { AUTO_UPDATE_MODE, AUTO_UPDATE_STRATEGY } from './types'
  3. export const defaultValue: AutoUpdateConfig = {
  4. strategy_setting: AUTO_UPDATE_STRATEGY.disabled,
  5. upgrade_time_of_day: 0,
  6. upgrade_mode: AUTO_UPDATE_MODE.update_all,
  7. exclude_plugins: [],
  8. include_plugins: [],
  9. }