26 lines
1.4 KiB
TypeScript
26 lines
1.4 KiB
TypeScript
/**
|
|
* Features Module
|
|
* Exports all feature classes and types
|
|
*/
|
|
|
|
// Abstract base
|
|
export { Feature, type TDeviceReference } from './feature.abstract.js';
|
|
|
|
// Concrete features - Document/Infrastructure
|
|
export { ScanFeature, type IScanFeatureOptions } from './feature.scan.js';
|
|
export { PrintFeature, type IPrintFeatureOptions } from './feature.print.js';
|
|
export { PlaybackFeature, type IPlaybackFeatureOptions } from './feature.playback.js';
|
|
export { VolumeFeature, type IVolumeFeatureOptions, type IVolumeController } from './feature.volume.js';
|
|
export { PowerFeature, type IPowerFeatureOptions } from './feature.power.js';
|
|
export { SnmpFeature, type ISnmpFeatureOptions } from './feature.snmp.js';
|
|
|
|
// Smart Home Features (protocol-agnostic: home-assistant, hue, mqtt, etc.)
|
|
export { SwitchFeature, type ISwitchFeatureOptions } from './feature.switch.js';
|
|
export { SensorFeature, type ISensorFeatureOptions } from './feature.sensor.js';
|
|
export { LightFeature, type ILightFeatureOptions } from './feature.light.js';
|
|
export { CoverFeature, type ICoverFeatureOptions } from './feature.cover.js';
|
|
export { LockFeature, type ILockFeatureOptions } from './feature.lock.js';
|
|
export { FanFeature, type IFanFeatureOptions } from './feature.fan.js';
|
|
export { ClimateFeature, type IClimateFeatureOptions } from './feature.climate.js';
|
|
export { CameraFeature, type ICameraFeatureOptions } from './feature.camera.js';
|