UNPKG

tsvesync

Version:

A TypeScript library for interacting with VeSync smart home devices

14 lines (13 loc) 683 B
import { VeSyncFan } from '../vesyncFan'; import { VeSync } from '../vesync'; export { VeSyncAirBypass } from './airBypass'; export { VeSyncAirBaseV2 } from './airBaseV2'; export { VeSyncAir131 } from './air131'; export { VeSyncTowerFan } from './towerFan'; export { VeSyncHumidifier } from './humidifier'; export { VeSyncWarmHumidifier } from './warmHumidifier'; export { VeSyncHumid200300S } from './humid200300S'; export { VeSyncSuperior6000S } from './superior6000S'; export { VeSyncHumid1000S } from './humid1000S'; export { VeSyncHumid200S } from './humid200S'; export declare const fanModules: Record<string, new (details: Record<string, any>, manager: VeSync) => VeSyncFan>;