UNPKG

matterbridge-roborock-vacuum-plugin

Version:
21 lines 726 B
export * from './helpers.js'; export * from './mopOnly.js'; export * from './special.js'; export * from './types.js'; export * from './vacuumAndMop.js'; export * from './vacuumOnly.js'; import { mopOnlyModeConfigs } from './mopOnly.js'; import { smartPlanModeConfig, vacFollowedByMopModeConfig } from './special.js'; import { vacuumAndMopModeConfigs } from './vacuumAndMop.js'; import { vacuumOnlyModeConfigs } from './vacuumOnly.js'; export const baseCleanModeConfigs = [ ...vacuumAndMopModeConfigs, ...mopOnlyModeConfigs, ...vacuumOnlyModeConfigs, ]; export const smartCleanModeConfigs = [ smartPlanModeConfig, vacFollowedByMopModeConfig, ...baseCleanModeConfigs, ]; //# sourceMappingURL=index.js.map