UNPKG

tsvesync

Version:

A TypeScript library for interacting with VeSync smart home devices

14 lines (11 loc) 544 B
// Export main VeSync manager class export { VeSync } from './lib/vesync'; // Export device classes export { VeSyncAirBypass } from './lib/vesyncFanImpl'; export { VeSyncOutlet7A, VeSyncOutlet10A, VeSyncOutlet15A, VeSyncOutdoorPlug } from './lib/vesyncOutletImpl'; export { VeSyncBulb } from './lib/vesyncBulb'; export { VeSyncWallSwitch } from './lib/vesyncSwitchImpl'; // Export base device class export { VeSyncBaseDevice } from './lib/vesyncBaseDevice'; // Export helper functions export { Helpers, setApiBaseUrl } from './lib/helpers';